Instead of step use next .
In the Rails manual:
The difference between the next and the step is that the step stops at the next line of executed code, taking only one step, and then moves on to the next line without going down to the inside of the methods.
Assuming you set your breakpoint in the application code, next will not go down to the library code. He will remain "framed."
source share