From 341a883e0b7c9a0bc1782ed6bd1c0afa40dec2c1 Mon Sep 17 00:00:00 2001 From: Dave Copeland Date: Sat, 22 Aug 2015 15:09:48 -0400 Subject: [PATCH] shit show --- Gemfile | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/Gemfile b/Gemfile index ef4c2dd2..6ccb2cac 100644 --- a/Gemfile +++ b/Gemfile @@ -6,16 +6,6 @@ gem "rcov", ">= 0.9.8", :platforms => :mri_18 gem "simplecov", "~> 0.6.4", :platforms => :mri_19 gem "psych", :platforms => :mri_19 -#Travis has an ancient bundler I guess?!?!? Sigh. -begin -gem "test-unit", :platforms => :mri_22 -rescue => ex - if ex.message =~/mri_22 is not a valid platform/ - if RUBY_VERSION =~ /2\.2\./ - gem 'test-unit' - end - else - raise ex - end +if RUBY_VERSION =~ /2\.2\./ + gem "test-unit" end -