2

我在一个红宝石、非 Rails 项目中使用 Guard。(是的,rails 标签就在那里,所以合适的人会找到它。)

我有一个由我的 Guardfile 持续构建的系统设置。当我 run_all 时,所有的 Guards 基本上都在运行一个构建,除了查看某些文件并有选择地构建。

我希望可以选择从 rake 任务中运行构建。

我想我应该能够在 rake 任务中做这样的事情,但我不明白 run_all 在这里期望什么......

task :build do
  require 'guard'
  Guard.setup :guardfile => 'Guardfile'
  Guard.run_all 
end

感谢您的任何提示...

4

1 回答 1

3

Answering my own lame question. I found the answer in the github wiki under "Guard Cookbook".

https://github.com/guard/guard/wiki/Use-Guard-programmatically-cookbook

于 2012-04-20T16:37:52.857 回答