Reputation: 22711
I'm using pry-debugger with debugger. When stepping through the execution stack, I would like to skip over framework and library files and only view code in my project (a rails app).
Is there a way to do this?
Upvotes: 4
Views: 446
Reputation: 500
I'm stuck with the same question.
Apparently you can exclude the files you don't want to enter by going into Run|Edit
configurations, then select the code coverage tab and click on the add patterns button.
You have to put in a regular expression for the files you want to exclude.
Upvotes: 1