Skip to content

Commit

Permalink
Merge pull request #164 from mkmn/ci_against_rails_7_2
Browse files Browse the repository at this point in the history
CI against Rails 7.2
  • Loading branch information
krororo authored Jan 23, 2025
2 parents 633b270 + ddb145d commit e734ab8
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- rails_6.1
- rails_7.0
- rails_7.1
- rails_7.2
exclude:
- ruby-version: '3.2'
gemfile: rails_6.1
Expand Down
14 changes: 14 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

appraise "rails-6.1" do
gem "rails", "~> 6.1.0"

# NOTE: concurrent-ruby gem no longer loads the logger gem since v1.3.5.
# https://github.com/ruby-concurrency/concurrent-ruby/pull/1062
# https://github.com/rails/rails/pull/54264
gem "concurrent-ruby", "< 1.3.5"
end

appraise "rails-7.0" do
Expand All @@ -11,8 +16,17 @@ appraise "rails-7.0" do
gem "base64"
gem "bigdecimal"
gem "mutex_m"

# NOTE: concurrent-ruby gem no longer loads the logger gem since v1.3.5.
# https://github.com/ruby-concurrency/concurrent-ruby/pull/1062
# https://github.com/rails/rails/pull/54264
gem "concurrent-ruby", "< 1.3.5"
end

appraise "rails-7.1" do
gem "rails", "~> 7.1.0"
end

appraise "rails-7.2" do
gem "rails", "~> 7.2.0"
end
1 change: 1 addition & 0 deletions gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ source "https://rubygems.org"

gem "appraisal"
gem "rails", "~> 6.1.0"
gem "concurrent-ruby", "< 1.3.5"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ gem "rails", "~> 7.0.1"
gem "base64"
gem "bigdecimal"
gem "mutex_m"
gem "concurrent-ruby", "< 1.3.5"

gemspec path: "../"
8 changes: 8 additions & 0 deletions gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal"
gem "rails", "~> 7.2.0"

gemspec path: "../"

0 comments on commit e734ab8

Please sign in to comment.