source "http://rubygems.org" gemspec group :development, :test do platforms :ruby do gem 'spork', '>= 0.9.0.rc9' gem 'guard-spork' unless ENV['TRAVIS'] if RbConfig::CONFIG['target_os'] =~ /darwin/i gem 'rb-fsevent', '>= 0.3.9' gem 'growl', '~> 1.0.3' end if RbConfig::CONFIG['target_os'] =~ /linux/i gem 'rb-inotify', '>= 0.5.1' gem 'libnotify', '~> 0.1.3' end end end platforms :jruby do unless ENV['TRAVIS'] if RbConfig::CONFIG['target_os'] =~ /darwin/i gem 'growl', '~> 1.0.3' end if RbConfig::CONFIG['target_os'] =~ /linux/i gem 'rb-inotify', '>= 0.5.1' gem 'libnotify', '~> 0.1.3' end end end end