Ruby Guard:正在监视的目录是否存储在某个变量中?

发布于 2024-12-29 22:39:43 字数 237 浏览 1 评论 0原文

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

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

发布评论

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

评论(1

甜嗑 2025-01-05 22:39:43

根据此:

https://github.com/guard /guard/wiki/Correctly-using-the---watchdir-option

解决方案是在正在监视的目录中运行guard,但在不同的目录中指定Guardfile:

cd /directory/being/watched
BUNDLE_GEMFILE=/projects/foo/Gemfile bundle exec guard -G /projects/foo/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:

cd /directory/being/watched
BUNDLE_GEMFILE=/projects/foo/Gemfile bundle exec guard -G /projects/foo/Guardfile
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文