如何使用guard和pry暂停执行?

发布于 2024-12-10 20:16:57 字数 250 浏览 1 评论 0原文

我的 Rails 3.1.1 应用程序带有此保护文件:

guard 'bundler' do
  watch('Gemfile')
end

guard 'rails' do
  watch('Gemfile.lock')
  watch(%r{^(config|lib)/.*})
end

当我的应用程序在保护下运行时,对 binding.pry 的调用不会暂停执行。我怎样才能做到这一点?

I have Rails 3.1.1 app with this guardfile:

guard 'bundler' do
  watch('Gemfile')
end

guard 'rails' do
  watch('Gemfile.lock')
  watch(%r{^(config|lib)/.*})
end

When my app is running under guard, a call to binding.pry does not pause execution. How do I make that happen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

葬シ愛 2024-12-17 20:16:57

我以前没有使用过 Guard,但也许您想要的是 远程会话

I haven't used Guard before but perhaps what you want are Remote sessions

祁梦 2024-12-17 20:16:57

这是来自他们的 GitHub 页面:

pause:暂停|p + return - 切换文件修改监听。有用
切换 git 分支时。

不确定这是否是您所需要的。

This is from their GitHub page:

pause: pause|p + return - Toggle files modification listening. Useful
when switching git branches.

Not sure if that's what you are needing.

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