Skip to content

Commit

Permalink
Test Against Rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala committed Oct 5, 2023
1 parent f7648e1 commit ca2df92
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ jobs:
fail-fast: false
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2']
gemfile: [ rails_7_0 ]
gemfile: [rails_7_0, rails_7_1]
channel: ['stable']

include:
- gemfile: rails_7_0
ruby: head
channel: 'experimental'
- gemfile: rails_7_1
ruby: head
channel: 'experimental'
- gemfile: rails_edge
ruby: '2.7'
channel: 'experimental'
Expand Down
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ appraise "rails_7_0" do
gem "rails", "~> 7.0.0"
end

appraise "rails_7_1" do
gem "rails", "~> 7.1.0"
end

appraise "rails_edge" do
gem "rails", git: "https://github.com/rails/rails.git", branch: "main"
end
2 changes: 1 addition & 1 deletion gemfiles/rails_7_0.gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file was generated by Appraisal

source "http://rubygems.org"
source "https://rubygems.org"

gem "rails", "~> 7.0.0"
gem "rspec"
Expand Down
13 changes: 13 additions & 0 deletions gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 7.1.0"
gem "rspec"
gem "rspec-rails", "~> 6.0"
gem "sqlite3"
gem "byebug"
gem "appraisal"
gem "nokogiri", "~> 1.8"

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

source "http://rubygems.org"
source "https://rubygems.org"

gem "rails", git: "https://github.com/rails/rails.git", branch: "main"
gem "rspec"
gem "rspec-rails", "~> 3.7"
gem "rspec-rails", "~> 6.0"
gem "sqlite3"
gem "byebug"
gem "appraisal"
Expand Down

0 comments on commit ca2df92

Please sign in to comment.