Skip to content

Commit

Permalink
Update gem requirement to allow Rails 7.1 (#2453)
Browse files Browse the repository at this point in the history
* Update gem requirement to allow Rails 7.1

* Add rdoc to Gemfile

* Remove upper limit of Rails version

Co-authored-by: Andreas Finger <[email protected]>

---------

Co-authored-by: Andreas Finger <[email protected]>
  • Loading branch information
schinery and mediafinger authored Oct 5, 2023
1 parent 2ae640f commit 5456a6d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
include:
# Recent Rubies and Rails
- ruby-version: '3.2'
rails-version: '7.0'
rails-version: '7.1'
- ruby-version: '3.1'
rails-version: '7.0'
rails-version: '7.1'
- ruby-version: '3.0'
rails-version: '7.0'
rails-version: '7.1'
- ruby-version: '2.7'
rails-version: '7.0'
rails-version: '7.1'
- ruby-version: '2.6'
rails-version: '6.1'
- ruby-version: '2.6'
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ end
group :development, :test do
if RUBY_VERSION < '3.0'
gem 'rubocop', '~> 0.40.0', require: false
gem 'rdoc', '6.3.3', require: false
else
gem 'rubocop', '~> 1.56.0', require: false
gem 'rubocop-minitest', '~> 0.31.0', require: false
Expand Down
2 changes: 1 addition & 1 deletion active_model_serializers.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 2.1'

rails_versions = ['>= 4.1', '< 7.1']
rails_versions = ['>= 4.1']
spec.add_runtime_dependency 'activemodel', rails_versions
# 'activesupport', rails_versions
# 'builder'
Expand Down

0 comments on commit 5456a6d

Please sign in to comment.