ruby-on-rails – 如何让ruby / rails调试器跳转到应用程序代码中

在做Rails开发时,并使用调试器

经常发生这一步导致库代码,

有没有办法限制它只跳进我的应用程序的代码?

非常感谢你 最佳答案 而不是使用步骤,请使用next.

从Rails指南:

The difference between next and step is that step stops at the next
line of code executed, doing just a single step, while next moves to
the next line without descending inside methods.

假设您在应用程序代码中设置断点,接下来不会下降到库代码中.它将保持“框架内”.

点赞