aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile36
1 files changed, 20 insertions, 16 deletions
diff --git a/Gemfile b/Gemfile
index 68705db..2a7e717 100644
--- a/Gemfile
+++ b/Gemfile
@@ -13,28 +13,32 @@ group :development, :test do
gem 'rb-fchange', '~> 0.0.5'
gem 'rb-notifu', '~> 0.0.4'
end
-
+
platforms :ruby do
gem 'spork', '0.9.0.rc9'
gem 'guard-spork'
- if Config::CONFIG['target_os'] =~ /darwin/i
- gem 'rb-fsevent', '>= 0.3.9'
- gem 'growl', '~> 1.0.3'
- end
- if Config::CONFIG['target_os'] =~ /linux/i
- gem 'rb-inotify', '>= 0.5.1'
- gem 'libnotify', '~> 0.1.3'
+ unless ENV['TRAVIS']
+ if Config::CONFIG['target_os'] =~ /darwin/i
+ gem 'rb-fsevent', '>= 0.3.9'
+ gem 'growl', '~> 1.0.3'
+ end
+ if Config::CONFIG['target_os'] =~ /linux/i
+ gem 'rb-inotify', '>= 0.5.1'
+ gem 'libnotify', '~> 0.1.3'
+ end
end
end
platforms :jruby do
- if Config::CONFIG['target_os'] =~ /darwin/i
- gem 'growl', '~> 1.0.3'
- end
- if Config::CONFIG['target_os'] =~ /linux/i
- gem 'rb-inotify', '>= 0.5.1'
- gem 'libnotify', '~> 0.1.3'
+ unless ENV['TRAVIS']
+ if Config::CONFIG['target_os'] =~ /darwin/i
+ gem 'growl', '~> 1.0.3'
+ end
+ if Config::CONFIG['target_os'] =~ /linux/i
+ gem 'rb-inotify', '>= 0.5.1'
+ gem 'libnotify', '~> 0.1.3'
+ end
end
end
end
@@ -42,8 +46,8 @@ end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
- gem 'sass-rails'
- gem 'coffee-rails'
+ gem 'sass-rails', '~> 3.1.0'
+ gem 'coffee-rails', '~> 3.1.0'
gem 'uglifier'
end