Disable byebug when RubyMine is used for debugging

Debugger in RubyMine doesn't work well with byebug.
For example, debugging Sidekiq jobs doesn't work when byebug is loaded.
This commit is contained in:
Gerhard Schlager 2015-10-09 21:51:17 +02:00
parent fb4a40e628
commit 8b3b14a704
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ group :test, :development do
gem 'rspec-given'
gem 'pry-nav'
gem 'spork-rails'
gem 'byebug'
gem 'byebug', require: ENV['RM_INFO'].nil?
end
group :development do