From f2aca02b8270ffaaf9aac27509ecde4a885afee0 Mon Sep 17 00:00:00 2001 From: muratayusuke Date: Wed, 19 Jun 2013 15:58:45 +0000 Subject: [PATCH] don't install rubocop under ruby 1.9.2 --- Gemfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index fd8d17e..88b1506 100644 --- a/Gemfile +++ b/Gemfile @@ -12,5 +12,7 @@ group :development do gem "rcov", :platforms => :mri_18 gem "simplecov", :platforms => :mri_19 gem "test-construct" - gem "rubocop" + if RUBY_VERSION >= '1.9.2' + gem "rubocop" + end end