diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2012-10-14 10:03:17 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2012-10-14 10:03:17 -0700 |
commit | 7b290ad13c294005db062e746f8b79c8a192e4fa (patch) | |
tree | 428fb51d6356bf93eb346927fc92084b1ef81bf6 /Gemfile | |
parent | 6338e1e68dfbe77c39eaaa17bb4950ef7db73704 (diff) | |
download | rails-7b290ad13c294005db062e746f8b79c8a192e4fa.tar.gz rails-7b290ad13c294005db062e746f8b79c8a192e4fa.tar.bz2 rails-7b290ad13c294005db062e746f8b79c8a192e4fa.zip |
The debugger gem isn't compatible with 1.9.3-p286 yet. Omit it for now.
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' - gem 'debugger' if !ENV['TRAVIS'] && RUBY_VERSION < "2.0" + gem 'debugger' if !ENV['TRAVIS'] && RUBY_VERSION < "2.0" && RUBY_PATCHLEVEL < 286 end end |