diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-11-12 13:13:27 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-11-12 13:13:27 -0200 |
commit | 0ecd4640664c4723323d6fff5760dc4d833d7eb9 (patch) | |
tree | 6ab8c5cfb430620069b4ef8f1ced75c4677d7e06 | |
parent | 2f3d81c764a8b527299be8c33c64814431f83482 (diff) | |
download | rails-0ecd4640664c4723323d6fff5760dc4d833d7eb9.tar.gz rails-0ecd4640664c4723323d6fff5760dc4d833d7eb9.tar.bz2 rails-0ecd4640664c4723323d6fff5760dc4d833d7eb9.zip |
Debugger gem doesn't work with patchlevel < 327
-rw-r--r-- | Gemfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -42,7 +42,8 @@ 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 < 327 + end end |