aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-11-12 13:13:27 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2012-11-12 13:13:27 -0200
commit0ecd4640664c4723323d6fff5760dc4d833d7eb9 (patch)
tree6ab8c5cfb430620069b4ef8f1ced75c4677d7e06
parent2f3d81c764a8b527299be8c33c64814431f83482 (diff)
downloadrails-0ecd4640664c4723323d6fff5760dc4d833d7eb9.tar.gz
rails-0ecd4640664c4723323d6fff5760dc4d833d7eb9.tar.bz2
rails-0ecd4640664c4723323d6fff5760dc4d833d7eb9.zip
Debugger gem doesn't work with patchlevel < 327
-rw-r--r--Gemfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 83088c63b9..e834ad99b5 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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