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'
|
gem 'sqlite3'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
platforms :mri_21 do
|
||||||
|
gem 'pry-byebug'
|
||||||
|
end
|
||||||
|
|
||||||
platforms :jruby do
|
platforms :jruby do
|
||||||
gem 'jruby-openssl'
|
gem 'jruby-openssl'
|
||||||
gem 'activerecord-jdbcsqlite3-adapter'
|
gem 'activerecord-jdbcsqlite3-adapter'
|
||||||
|
|
|
@ -15,7 +15,7 @@ if ENV.has_key?("SIMPLECOV")
|
||||||
end
|
end
|
||||||
|
|
||||||
begin
|
begin
|
||||||
require 'pry'
|
require 'pry-byebug'
|
||||||
rescue LoadError
|
rescue LoadError
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue