diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-12-31 14:35:50 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-12-31 14:40:43 -0300 |
commit | 9c18b6a818801a77a90c2768e436e4690537a3ab (patch) | |
tree | 2389e8d88879d95f8e40ce61116e0ac430cbd451 /Gemfile | |
parent | cf2dcf4e9f752a4dbb4f477bd1b884863bab5ca4 (diff) | |
download | rails-9c18b6a818801a77a90c2768e436e4690537a3ab.tar.gz rails-9c18b6a818801a77a90c2768e436e4690537a3ab.tar.bz2 rails-9c18b6a818801a77a90c2768e436e4690537a3ab.zip |
Do not install debugger in the pathlevel 362
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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' if RUBY_VERSION < '2.0' - gem 'debugger' if !ENV['TRAVIS'] && RUBY_VERSION < '2.0' + gem 'debugger' if !ENV['TRAVIS'] && RUBY_VERSION < '2.0' && RUBY_PATCHLEVEL < 362 end end |