I am writing a Rails 4 application in Ruby 2 and I am using the debugger stone to debug my code.
Here is the current situation:
I place the debugger statement in my Rspec tests, run the tests in the shell, and the program terminates as expected. Wanting to go to the next line, I will enter n , but the debugger does enter the code, showing me the inner workings of libraries that I don't like.
So the problem is that the debug command n acts like s .
How can I solve this problem *?
* I do not want to set a breakpoint on the next line, and then continue , which will be very old, very fast.
source share