Skip to content

Instantly share code, notes, and snippets.

@docwhat
Created October 6, 2012 03:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save docwhat/3843679 to your computer and use it in GitHub Desktop.
Save docwhat/3843679 to your computer and use it in GitHub Desktop.
Example of cross-platform Guard support gems
group :tools do
gem "guard"
gem "guard-bundler"
gem "guard-rspec"
#For detecting changes in the filesystem
gem 'rb-inotify', :require => false
gem 'rb-fsevent', :require => false
#For displaying notices
gem 'growl', :require => false
gem 'libnotify', :require => false
gem 'terminal-notifier-guard', :require => false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment