有没有办法制作一个简单的守卫手表?我想在特定目录中的文件更改时运行 rake 任务,并且完成所有这些步骤对于这个一次性任务来说太多了。 https://github.com/guard/guard/wiki/Create-a-guard
我尝试在 Guardfile 中添加它,但它不起作用。
guard :doc do
watch(%r{^documentation}) { "rake doc:build" }
end
watch("/documentation") { "rake doc:build" }
那么您知道在使用guard更新文件时运行 rake 任务的简单方法吗?