Skip to content

Commit

Permalink
Replace use of pry with debug
Browse files Browse the repository at this point in the history
`pry` and `pry-byebug` no longer supported since Ruby 3.2:
deivid-rodriguez/pry-byebug#423

https://app.asana.com/0/1205428368058391/1206747143994466/f
  • Loading branch information
fsanggang committed Mar 26, 2024
1 parent bb70653 commit 66620bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flappi.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'activesupport', '>4.2.7'
s.add_runtime_dependency 'recursive-open-struct'

s.add_development_dependency 'debug'
s.add_development_dependency 'maxitest', '~> 4'
s.add_development_dependency 'mocha'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'rake', '>= 12.3'
s.add_development_dependency 'rubocop', '1.59.0'
s.add_development_dependency 'rubocop-minitest', '0.10.1'
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
SimpleCov.start
end

require 'debug'
require 'maxitest/autorun'
require 'shoulda-context'
require 'mocha/minitest'
require 'pry'
require 'flappi'

# Requiring custom test helpers
Expand Down

0 comments on commit 66620bd

Please sign in to comment.