Skip to content

Commit d0e05ee

Browse files
authored
Add Rails 8.2 support (#225)
* Add Rails 8.2 support Updates the gemspec to support Rails 8.2.x by changing the upper bound from < 8.2.0 to < 8.3.0 for actionpack, activesupport, and railties. Also adds a rails-8.2 appraisal configuration for testing against Rails 8.2.0.alpha. * Temporarily remove the rails-8.2 appraisal until the 8.2.0.alpha branch has been created
1 parent de969fe commit d0e05ee

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cloudflare-rails.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ Gem::Specification.new do |spec|
2929
spec.add_development_dependency 'rubocop-rails', '~> 2.33.4'
3030
spec.add_development_dependency 'rubocop-rspec', '~> 3.7.0'
3131
spec.add_development_dependency 'webmock', '~> 3.25.0'
32-
spec.add_dependency 'actionpack', '>= 7.2.0', '< 8.2.0'
33-
spec.add_dependency 'activesupport', '>= 7.2.0', '< 8.2.0'
34-
spec.add_dependency 'railties', '>= 7.2.0', '< 8.2.0'
32+
spec.add_dependency 'actionpack', '>= 7.2.0', '< 8.3.0'
33+
spec.add_dependency 'activesupport', '>= 7.2.0', '< 8.3.0'
34+
spec.add_dependency 'railties', '>= 7.2.0', '< 8.3.0'
3535
spec.add_dependency 'zeitwerk', '>= 2.5.0'
3636

3737
spec.required_ruby_version = '>= 3.2.0'

0 commit comments

Comments
 (0)