我的目标是使用Guard构建一个简单的自定义后卫。我的应用程序的gem安装和bundler安装很顺利。我的Guardfile包含:
notification :growl
guard 'eyeball' do
watch %r{^app/(.*)}
watch %r{^config/(.*)}
watch %r{^lib/(.*)}
end
好的,接下来,我需要告诉Guard在比赛发生时该怎么做。但我不知道该怎么做。 (在这种情况下,我想看看我的应用程序进行更改并运行一些任意代码。假设没有guard available for what I want。我想学习如何自己动手。)
在真正的'错误并看到下一个弹出的错误'样式时,当我运行guard
时,我收到以下错误消息:
ERROR: Could not load 'guard/eyeball' or find class Guard::Eyeball ERROR: cannot load such file -- guard/eyeball ERROR: Invalid Guardfile, original error is: undefined method `new' for nil:NilClass ERROR: No guards found in Guardfile, please add at least one. Guard uses Growl to send notifications. Guard is now watching at '/Users/my-user-name/dev/my-project-name'
所以,这给了我一个提示,我需要创建一个guard/eyeball.rb
文件。也许?但我怎么能从文档中知道这个呢?
我已经读过(好几次)非常详细和有用的Guard README但是没有找到一个很好的简单例子,它向人们展示了如何做“只是编写自己后卫的基本知识”。出乎意料的是,RailsCasts也没有真正回答我的问题:见RailsCast #264 Guard。
我忽略了Guard README中的某些内容吗?你能帮忙或指出一个很好的例子吗?谢谢!