Pry 中是否有相当于 next 的东西?

发布于 2024-12-11 01:29:44 字数 362 浏览 2 评论 0原文

当使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

始终不够爱げ你 2024-12-18 01:29:44

Ctrl+D,可以跳转到下一个中​​断或退出

Ctrl+D, you can jump to next break or exit

北音执念 2024-12-18 01:29:44

如果 ruby​​ 版本 >2.0,建议使用 pry-byebug

Recommend to use pry-byebug if ruby version >2.0

随风而去 2024-12-18 01:29:44

如果您想要(此及更多)调试功能,则需要使用 pry_debug https://github.com/Mon-Ouie/pry_debug

If you want (this and more) debugging features you'll need to use pry_debug: https://github.com/Mon-Ouie/pry_debug

强者自强 2024-12-18 01:29:44

您还可以使用 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.

软糖 2024-12-18 01:29:44

如果使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文