如何使用guard和pry暂停执行?
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我以前没有使用过 Guard,但也许您想要的是 远程会话
I haven't used Guard before but perhaps what you want are Remote sessions
这是来自他们的 GitHub 页面:
不确定这是否是您所需要的。
This is from their GitHub page:
Not sure if that's what you are needing.