Pry 中是否有相当于 next 的东西?
当使用 pry 作为调试器时,我没有看到直接进入下一行的方法。我能找到的就是编辑方法并将 binding.pry 移动到下一行。有这样的功能吗?
22: def scan path
23: @last_line_had_text, @files_read, @hands_read = nil, 0, 0
24: Find.find(path){ |file_name|
=> 25: binding.pry
26: read_file(file_name) if file_name.include?(".txt")
27: }
28: end
I don't see a way of just going to the next line when using pry as a debugger. All I can find is to edit the method and move binding.pry to the next line. Is there such a feature?
22: def scan path
23: @last_line_had_text, @files_read, @hands_read = nil, 0, 0
24: Find.find(path){ |file_name|
=> 25: binding.pry
26: read_file(file_name) if file_name.include?(".txt")
27: }
28: end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
Ctrl+D,可以跳转到下一个中断或退出
Ctrl+D, you can jump to next break or exit
如果 ruby 版本 >2.0,建议使用
pry-byebug
Recommend to use
pry-byebug
if ruby version >2.0如果您想要(此及更多)调试功能,则需要使用
pry_debug
: https://github.com/Mon-Ouie/pry_debugIf you want (this and more) debugging features you'll need to use
pry_debug
: https://github.com/Mon-Ouie/pry_debug您还可以使用 ruby-debug_pry 它将 pry 集成为
ruby-debug< /code> 命令,使您能够轻松地在两者之间来回切换。
现在推荐使用名为 pry-nav 的新项目来执行此操作。
You can also use ruby-debug_pry which integrates pry as a
ruby-debug
command, enabling you to easily switch back and forth between the two.A new project called pry-nav is now the recommended way to do this.
如果使用Using MRI 1.9.2+,那么有一个新项目pry-debugger,它现在是推荐的替代品撬动导航。它与 pry-nav 是同一作者,而且速度更快。
If using Using MRI 1.9.2+ then there is a new project, pry-debugger, that is now the recommended replacement for pry-nav. It's by the same author as pry-nav and is faster.