How do I step into/over the code while in a script/breakpointer console?
Amr Malik
2006-Jan-12 00:21 UTC
[Rails] Re: Stepping into debugger while in script/breakpointer
Vurg wrote:> How do I step into/over the code while in a script/breakpointer console?Vurg, I don''t think you can ''step'' per se, but you can do multiple breakpoints. some more info here : http://laughingmeme.org/archives/002900.html Also the wiki has some info on breakpointer: http://wiki.rubyonrails.com/rails/pages/HowtoDebugWithBreakpoint Breakpointer docs here: http://ruby-breakpoint.rubyforge.org/doc/ once the breakpoint kicks in, you can do things like: client.puts source_lines # will give you the source context local_variables exit will "continue" on, until perhaps your next breakpoint. HTH, Amr -- Posted via http://www.ruby-forum.com/.