Skip to content

Commit 22ed5cb

Browse files
update support for latest ruby and rails versions.
1 parent 5863aed commit 22ed5cb

7 files changed

+8
-704
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ jobs:
55
strategy:
66
fail-fast: false
77
matrix:
8-
gemfile: [ rails_6.0, rails_6.1, rails_7.0 ]
9-
ruby: [ 2.7, '3.0' ]
8+
gemfile: [ rails_6.1, rails_7.0, rails_7.1 ]
9+
ruby: [ '3.0', 3.1, 3.2 ]
1010

1111
runs-on: ubuntu-latest
1212
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/.bundle/
22
/.yardoc
33
/Gemfile.lock
4+
/gemfiles/*.lock
45
/_yardoc/
56
/coverage/
67
/doc/

Appraisals

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
appraise "rails-6.0" do
2-
gem "rails", "~>6.0.0"
3-
end
4-
51
appraise "rails-6.1" do
62
gem "rails", "~>6.1.0"
73
end
@@ -10,3 +6,7 @@ appraise "rails-7.0" do
106
gem "rails", "~>7.0.0"
117
end
128

9+
appraise "rails-7.1" do
10+
gem "rails", "~>7.1.0"
11+
end
12+

gemfiles/rails_6.0.gemfile.lock

-232
This file was deleted.

0 commit comments

Comments
 (0)