最近写 Rails 程序练手的时候,由于在家用 Mac OS X,单位电脑上用 Ubuntu,所以在对 Guard 配置的过程中尤其注重了保证体验一致的办法,其中最主要的就是如何调用系统通知中心这一方面。
先前很多教程或者网上资料中(比如 RailsTutorial 和 RailsCast 等)对 Guard 的 Gemfile 写法都存在过期或冗余,所以自己查找资料更新了相关办法。
详细内容请看:http://blog.huhao.name/blog/2013/06/05/use-guard-in-rails-project/
group :development do
# If you need to use rspec, please replace this by 'guard-repec'.
gem 'guard'
# Use for notify on Mac OS X, you must install growl and growlnotify before.
gem 'growl'
end