Skip to content

Commit

Permalink
The growl and fsevent gems only work on MacOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
bernd committed Sep 1, 2011
1 parent 622badf commit f7ef914
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Gemfile
@@ -1,3 +1,5 @@
require 'rbconfig'

source :rubygems

gemspec
Expand All @@ -6,9 +8,12 @@ gem 'bundler'

unless ENV['TRAVIS']
gem 'guard-rspec'
gem 'rb-fsevent'
gem 'growl'
gem 'growl_notify'

if RbConfig::CONFIG['host_os'] =~ /darwin/
gem 'rb-fsevent'
gem 'growl'
gem 'growl_notify'
end
end

platforms :jruby do
Expand Down

0 comments on commit f7ef914

Please sign in to comment.