aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2012-10-15 06:32:16 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2012-10-15 06:32:16 -0700
commit46dc6e7786222865309d15a9eaaaf55e3b7d9c1f (patch)
treef0bc5588f0f9fc8ebd0398dc6fd3cd63144208c3 /Gemfile
parent5225a938d69cd2bf3897ccb99f794f87b043ed64 (diff)
downloadrails-46dc6e7786222865309d15a9eaaaf55e3b7d9c1f.tar.gz
rails-46dc6e7786222865309d15a9eaaaf55e3b7d9c1f.tar.bz2
rails-46dc6e7786222865309d15a9eaaaf55e3b7d9c1f.zip
ruby-prof isn't compatible with ruby trunk after 36925
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 9afbac6e02..0fff8a8967 100644
--- a/Gemfile
+++ b/Gemfile
@@ -41,8 +41,8 @@ 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" && RUBY_PATCHLEVEL < 286
+ gem 'ruby-prof', '~> 0.11.2' if RUBY_VERSION < '2.0'
+ gem 'debugger' if !ENV['TRAVIS'] && RUBY_VERSION < '2.0' && RUBY_PATCHLEVEL < 286
end
end