1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

The debugger gem isn't compatible with 1.9.3-p286 yet. Omit it for now.

This commit is contained in:
Jeremy Kemper 2012-10-14 10:03:17 -07:00
parent 6338e1e68d
commit 7b290ad13c

View file

@ -42,7 +42,7 @@ 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"
gem 'debugger' if !ENV['TRAVIS'] && RUBY_VERSION < "2.0" && RUBY_PATCHLEVEL < 286
end
end