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.
|
|
|
|
|
|
|
you can use ruby-debug to get access to irb
when program reaches debugger you will get access to irb. |
||||
|