Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gem "activerecord", ar_version
gem "ostruct"
gem "minitest", "~> 5.25.0"
gem "minitest-rg", "~> 5.3.0"
gem "pry", "~> 0.14.2"
gem "pry", "~> 0.16.0"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

This update to pry version ~> 0.16.0 introduces a dependency conflict with pry-byebug.

The pry-byebug gem at version ~> 3.11.0 requires pry < 0.15.0. Attempting to use pry version 0.16.0 will cause a dependency resolution failure when running bundle install.

To resolve this, you must also upgrade pry-byebug to a version that supports pry >= 0.15.0. Please update the pry-byebug dependency on the following line.

Suggested Change:

gem "pry", "~> 0.16.0"
gem "pry-byebug", "~> 4.0.0"

gem "pry-byebug", "~> 3.11.0"
# Add sqlite3 for testing for compatibility with other adapters.
gem 'sqlite3'
Expand Down