From 6f153d1d2e39fba4563ec01f345f5a292600455f Mon Sep 17 00:00:00 2001 From: Bernd Ahlers Date: Tue, 13 Nov 2012 16:28:44 +0100 Subject: [PATCH] Unbreak CI for JRuby 1.8. Bundler can't differentiate between JRuby 1.8 and 1.9 platforms in the Gemfile. Only include the reel gem if we are on >=1.9 so the Travis jruby-18mode can work again. --- Gemfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 65439129..7cf451ea 100644 --- a/Gemfile +++ b/Gemfile @@ -8,7 +8,9 @@ gem 'bundler' group :webservers do gem 'mongrel', '~> 1.2.beta', :platform => [:mri, :rbx] - gem 'reel', '>= 0.1.0', :platform => [:ruby_19, :jruby] + if RUBY_VERSION >= '1.9' + gem 'reel', '>= 0.1.0', :platform => [:ruby_19, :jruby] + end gem 'hatetepe', '~> 0.5' end