mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Add debugging tools by default (byebug and pry)
This commit is contained in:
parent
7d60147435
commit
e30a19a532
2 changed files with 5 additions and 1 deletions
4
Gemfile
4
Gemfile
|
@ -12,6 +12,10 @@ platforms :ruby do
|
|||
gem 'sqlite3'
|
||||
end
|
||||
|
||||
platforms :mri_21 do
|
||||
gem 'pry-byebug'
|
||||
end
|
||||
|
||||
platforms :jruby do
|
||||
gem 'jruby-openssl'
|
||||
gem 'activerecord-jdbcsqlite3-adapter'
|
||||
|
|
|
@ -15,7 +15,7 @@ if ENV.has_key?("SIMPLECOV")
|
|||
end
|
||||
|
||||
begin
|
||||
require 'pry'
|
||||
require 'pry-byebug'
|
||||
rescue LoadError
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue