When doing Rails development, and shen using debugger
it often happens that step leads to library code,
is there a way to restrict it only jumping into my application’s code?
Thank you very much
When doing Rails development, and shen using debugger it often happens that step leads
Share
Instead of using
step, usenext.From the Rails guide:
Assuming you set your breakpoint within your application code,
nextwill not descend into library code. It will stay “in frame”.