Ruby Guard:正在监视的目录是否存储在某个变量中?
我正在使用 Guard 自动监视目录,并使用 Guard-Shell 执行一些 bash 脚本,问题是我的 Guardfile 与正在监视的文件夹位于不同的文件夹中,所以我必须将guard 与 guard 一起使用 - w /directory/being/watched
。
我的问题是,是否有一个可以从 Guardfile 访问的变量来告诉我正在监视的目录?
谢谢。
I'm using Guard to automatically watch a directory and with Guard-Shell execute some bash script, the problem is that I have the Guardfile in a different folder that the one being watched, so I have to use guard with guard -w /directory/being/watched
.
My question is, Is there a variable accesible from the Guardfile that will tell me the directory being watched?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据此:
https://github.com/guard /guard/wiki/Correctly-using-the---watchdir-option
解决方案是在正在监视的目录中运行guard,但在不同的目录中指定Guardfile:
According to this:
https://github.com/guard/guard/wiki/Correctly-using-the---watchdir-option
the solution is to run guard in the directory being watched but specify the Guardfile in a different directory: