Skip to content

Commit

Permalink
Replaces 'pry' gem with state of the art 'debug' gem (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
eikes committed Mar 23, 2022
1 parent d26913f commit 10ed049
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gemspec
gem 'rake', '~> 12.0'
gem 'rspec', '~> 3.0'
gem 'awesome_print'
gem 'pry'
gem 'debug'

group :development, :test do
gem 'rubocop', require: false
Expand Down
10 changes: 9 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ GEM
coderay (1.1.3)
crack (0.4.5)
rexml
debug (1.4.0)
irb (>= 1.3.6)
reline (>= 0.2.7)
diff-lcs (1.4.4)
docile (1.4.0)
faraday (1.10.0)
Expand Down Expand Up @@ -60,6 +63,9 @@ GEM
guard-compat (~> 1.1)
rspec (>= 2.99.0, < 4.0)
hashdiff (1.0.1)
io-console (0.5.11)
irb (1.4.1)
reline (>= 0.3.0)
listen (3.7.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
Expand All @@ -84,6 +90,8 @@ GEM
rb-inotify (0.10.1)
ffi (~> 1.0)
regexp_parser (2.1.1)
reline (0.3.1)
io-console (~> 0.5)
rexml (3.2.5)
rspec (3.10.0)
rspec-core (~> 3.10.0)
Expand Down Expand Up @@ -133,9 +141,9 @@ PLATFORMS

DEPENDENCIES
awesome_print
debug
guard-rspec
ioki-ruby!
pry
rake (~> 12.0)
rspec (~> 3.0)
rubocop
Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

require 'bundler/setup'
require 'awesome_print'
require 'pry'
require 'debug'
require 'ioki'
require 'vcr'
require 'webmock/rspec'
Expand Down

0 comments on commit 10ed049

Please sign in to comment.