Created
October 6, 2012 03:36
-
-
Save docwhat/3843679 to your computer and use it in GitHub Desktop.
Example of cross-platform Guard support gems
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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