Skip to content

Commit

Permalink
Switch from pry-rails to pry (thoughtbot#2322)
Browse files Browse the repository at this point in the history
`pry-rails` is currently not being maintained, but also is failing from
Ruby 3.2.

Moving to `pry` should only drop a few Rails-specific features, but
ensure `pry` is still available.
  • Loading branch information
nickcharlton authored Jan 30, 2023
1 parent e1267d2 commit 1ac71dc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ group :development, :test do
gem "dotenv-rails"
gem "factory_bot_rails"
gem "i18n-tasks", "1.0.12"
gem "pry-rails"
gem "pry"
gem "yard"
end

Expand Down
7 changes: 1 addition & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,6 @@ GEM
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
pry-rails (0.3.9)
pry (>= 0.10.4)
public_suffix (5.0.1)
pundit (2.3.0)
activesupport (>= 3.0.0)
Expand Down Expand Up @@ -337,9 +335,6 @@ PLATFORMS
ruby

DEPENDENCIES
actionpack (= 6.1.7.2)
actionview (= 6.1.7.2)
activerecord (= 6.1.7.2)
administrate!
administrate-field-image
ammeter
Expand All @@ -358,7 +353,7 @@ DEPENDENCIES
kaminari-i18n
launchy
pg
pry-rails
pry
pundit
rack-timeout
redcarpet
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rails60.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ group :development, :test do
gem "byebug"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "i18n-tasks", "1.0.11"
gem "pry-rails"
gem "i18n-tasks", "1.0.12"
gem "pry"
gem "yard"
end

Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rails61.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ group :development, :test do
gem "byebug"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "i18n-tasks", "1.0.11"
gem "pry-rails"
gem "i18n-tasks", "1.0.12"
gem "pry"
gem "yard"
end

Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rails70.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ group :development, :test do
gem "byebug"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "i18n-tasks", "1.0.11"
gem "pry-rails"
gem "i18n-tasks", "1.0.12"
gem "pry"
gem "yard"
end

Expand Down

0 comments on commit 1ac71dc

Please sign in to comment.