4

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?

Similar question here.

Community
  • 1
  • 1
John Bachir
  • 22,495
  • 29
  • 154
  • 227

1 Answers1

1

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.

the Tin Man
  • 158,662
  • 42
  • 215
  • 303
Akshay Takkar
  • 500
  • 1
  • 7
  • 21