brainspec / enumerize

Enumerated attributes with I18n and ActiveRecord/Mongoid support
MIT License
1.72k stars 190 forks source link

Pin sqlite3 to match versioning in Rails 6.1 and 7.0 for tests #450

Closed 4ndypanda closed 1 month ago

4ndypanda commented 1 month ago

sqlite3 gem v2.0.0 was released on April 17, 2024 but older versions of Rails have a pessimistic version constraint on this gem to be < 2. A fix was made to relax this constraint in 7.1: https://github.com/rails/rails/pull/51592. Therefore, we need to pin this gem for older Rails when running tests for this repo.

nashby commented 1 month ago

@4ndypanda thanks!