Skip to content

Commit d7f9907

Browse files
authored
Merge pull request #185 from kiskoza/rails-7-2-support
Add Rails 7.2 to the CI matrix
2 parents 1472939 + 8638b43 commit d7f9907

File tree

5 files changed

+33
-5
lines changed

5 files changed

+33
-5
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- "6.1"
2222
- "7.0"
2323
- "7.1"
24+
- "7.2"
2425

2526
ruby:
2627
- "2.4"
@@ -121,6 +122,21 @@ jobs:
121122
- rails: "7.1"
122123
ruby: "2.6"
123124

125+
- rails: "7.2"
126+
ruby: "2.4"
127+
128+
- rails: "7.2"
129+
ruby: "2.5"
130+
131+
- rails: "7.2"
132+
ruby: "2.6"
133+
134+
- rails: "7.2"
135+
ruby: "2.7"
136+
137+
- rails: "7.2"
138+
ruby: "3.0"
139+
124140
env:
125141
BUNDLE_GEMFILE: ${{ github.workspace }}/spec/gemfiles/Gemfile.rails-${{ matrix.rails }}
126142

spec/gemfiles/Gemfile.rails-5.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ gemspec path: '../../'
44

55
gem 'rails', "~> 5.1.0"
66
gem 'responders', '~> 3.0'
7-
gem 'sqlite3'
7+
gem 'sqlite3', '~> 1.4.4'
88
gem 'sprockets', '~> 3.0'
99
gem "jquery-rails"
1010
gem "thin"

spec/gemfiles/Gemfile.rails-5.2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ gemspec path: '../../'
44

55
gem 'rails', "~> 5.2.0"
66
gem 'responders', '~> 3.0'
7-
gem 'sqlite3'
7+
gem 'sqlite3', '~> 1.4.4'
88
gem 'sprockets', '~> 3.0'
99
gem "jquery-rails"
1010
gem "thin"

spec/gemfiles/Gemfile.rails-7.1

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ gemspec path: '../../'
44

55
gem 'rails', '~> 7.1.0'
66
gem 'responders', '~> 3.0'
7-
# Could sqlite3 constrains when this PR get released
8-
# https://github.com/rails/rails/pull/51592
9-
gem 'sqlite3', '~> 1.4'
7+
gem 'sqlite3'
108
gem 'sprockets', '~> 4.0'
119
gem 'jquery-rails'
1210
gem 'thin'

spec/gemfiles/Gemfile.rails-7.2

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
source "http://rubygems.org"
2+
3+
gemspec path: '../../'
4+
5+
gem 'rails', '~> 7.2.0'
6+
gem 'responders', '~> 3.0'
7+
gem 'sqlite3'
8+
gem 'sprockets', '~> 4.0'
9+
gem 'jquery-rails'
10+
gem 'thin'
11+
gem 'capybara', '~> 3.0'
12+
gem 'acts_as_caxlsx', git: 'https://github.com/caxlsx/acts_as_caxlsx.git'
13+
14+
gem 'byebug'

0 commit comments

Comments
 (0)