aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gemfile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index d149ec6129..55185e36ea 100644
--- a/Gemfile
+++ b/Gemfile
@@ -39,7 +39,12 @@ instance_eval File.read local_gemfile if File.exists? local_gemfile
platforms :mri do
group :test do
gem 'ruby-prof', '~> 0.11.2'
- gem 'debugger' if !ENV['TRAVIS'] && RUBY_VERSION < "2.0"
+ end
+end
+
+platforms :mri_19 do
+ group :test do
+ gem 'debugger' unless ENV['TRAVIS']
end
end