Skip to content

Commit

Permalink
Ensure version 0.15.x is used with ActiveRecord 7.1 (#40)
Browse files Browse the repository at this point in the history
* Ensure activerecord 7.1 is used

* Ensure versions
  • Loading branch information
lloydwatkin authored Aug 28, 2024
1 parent e83608e commit 7ec5180
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ PATH
remote: .
specs:
janus-ar (0.15.2)
activerecord (>= 7.1.0, < 7.2)

GEM
remote: http://rubygems.org/
Expand Down Expand Up @@ -104,8 +105,7 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
activerecord (>= 7.1.0)
activesupport (>= 7.1.0)
activesupport (>= 7.1.0, < 7.2)
janus-ar!
mysql2
pry
Expand Down
4 changes: 2 additions & 2 deletions janus-ar.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Gem::Specification.new do |gem|

gem.required_ruby_version = '>= 3.2.0'

gem.add_development_dependency 'activerecord', '>= 7.1.0'
gem.add_development_dependency 'activesupport', '>= 7.1.0'
gem.add_dependency 'activerecord', '>= 7.1.0', '< 7.2'
gem.add_development_dependency 'activesupport', '>= 7.1.0', '< 7.2'
gem.add_development_dependency 'mysql2'
gem.add_development_dependency 'trilogy'
gem.add_development_dependency 'pry'
Expand Down

0 comments on commit 7ec5180

Please sign in to comment.