In ruby-debug, the next command takes you to the next line of code to be executed, regardless of whether that line is in your own code, or in the rails framework, or in a gem.
Is there some way to force ruby-debug (1.9) to jump to the next line that it encounters in your code without stopping at all the other lines it must execute along the way?
Yes, there is.
You can use
break linenumto manually set a breakpoint on an arbitrary line number (for instance the next one), and then typecto continue to the next breakpoint.The documentation for ruby-debug breakpoints would probably help you a bit as well.