我在一个红宝石、非 Rails 项目中使用 Guard。(是的,rails 标签就在那里,所以合适的人会找到它。)
我有一个由我的 Guardfile 持续构建的系统设置。当我 run_all 时,所有的 Guards 基本上都在运行一个构建,除了查看某些文件并有选择地构建。
我希望可以选择从 rake 任务中运行构建。
我想我应该能够在 rake 任务中做这样的事情,但我不明白 run_all 在这里期望什么......
task :build do
require 'guard'
Guard.setup :guardfile => 'Guardfile'
Guard.run_all
end
感谢您的任何提示...