Bump pry to a version that plays nice with Ruby 3.2

Otherwise you get the following error when starting RSpec:

```
(...)
An error occurred while loading base_spec_helper.
Failure/Error: require 'pry' unless ENV['CI']

NameError:
  undefined method `=~' for class `Pry::Code'
# ./spec/base_spec_helper.rb:10:in `<top (required)>'
No examples found.
(...)
```
This commit is contained in:
David Rodríguez
2025-10-29 14:00:02 +01:00
parent 5aea527962
commit e71a2603bd
2 changed files with 3 additions and 3 deletions

View File

@@ -189,7 +189,7 @@ group :development do
gem 'foreman'
gem 'i18n-tasks'
gem 'listen'
gem 'pry', '~> 0.13.0'
gem 'pry', '~> 0.13'
gem 'query_count'
gem 'rails-erd'
gem 'rubocop'