mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Use debugger gem if we are not Travis and Ruby < 2.0
This commit is contained in:
parent
44fa92129f
commit
b7918cce04
1 changed files with 1 additions and 1 deletions
2
Gemfile
2
Gemfile
|
@ -39,7 +39,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'
|
||||
gem 'debugger' if !ENV['TRAVIS'] && RUBY_VERSION < "2.0"
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue