I am writing a Rails 4 application in Ruby 2, and I am using the debugger
gem to debug my code.
Here is the situation currently:
I place a debugger
statement in my Rspec tests, run the tests in the shell, and the program breaks as expected. Wishing to step to the next line, I enter n
, but the debugger actually steps into the code, showing me the inner workings of libraries I don't care to see.
So the issue is, the debugger command n
is acting like s
.
How can I solve this problem*?
*I am not willing to put a breakpoint on the next line and then continue
, that will get very old, very fast.
byebug
in the meantime. Thank you for the issue page link. – Rootless