vote up 3 vote down star

Can I drop to an irb prompt from a ruby script?

I want to run a script, but then have it give me an irb prompt at a point in the program with the current state of the program, but not just by running rdebug and having a breakpoint.

flag

1 Answer

vote up 6 vote down check

you can use ruby-debug to get access to irb

require 'rubygems'
require 'ruby-debug'
x = 23
puts "welcome"
debugger
puts "end"

when program reaches debugger you will get access to irb.

link|flag
Will this take the binding context into account? Can I set the binding to something else? – John F. Miller Sep 5 at 1:35
Duh. I'm an idiot. Thanks! – Daniel Huckstep Oct 27 at 1:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.