diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2012-10-15 06:32:16 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2012-10-15 06:32:16 -0700 |
commit | 46dc6e7786222865309d15a9eaaaf55e3b7d9c1f (patch) | |
tree | f0bc5588f0f9fc8ebd0398dc6fd3cd63144208c3 /Gemfile | |
parent | 5225a938d69cd2bf3897ccb99f794f87b043ed64 (diff) | |
download | rails-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-- | Gemfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |