Commit 0469ba817d8c98cd28d6fcf88853a7dad1ede44d
1 parent
82619e6e
Exists in
master
and in
1 other branch
ruby-debug is not necessary for CI
Showing
1 changed file
with
4 additions
and
2 deletions
Show diff stats
Gemfile
... | ... | @@ -26,8 +26,10 @@ group :development, :test do |
26 | 26 | gem 'rspec-rails', '~> 2.5' |
27 | 27 | gem 'webmock', :require => false |
28 | 28 | gem 'factory_girl_rails' |
29 | -# gem 'ruby-debug', :platform => :mri_18 | |
30 | -# gem 'ruby-debug19', :platform => :mri_19, :require => 'ruby-debug' | |
29 | + unless ENV['TRAVIS'] | |
30 | + gem 'ruby-debug', :platform => :mri_18 | |
31 | + gem 'ruby-debug19', :platform => :mri_19, :require => 'ruby-debug' | |
32 | + end | |
31 | 33 | end |
32 | 34 | |
33 | 35 | group :test do | ... | ... |