Skip to content

Commit 83625cc

Browse files
committed
TECH-19528: drop ruby 3.1, 3.2 and add 3.3; drop Rails 6.0, 6.1 and add 7.2 and 8.0
1 parent ffb0015 commit 83625cc

File tree

6 files changed

+44
-6
lines changed

6 files changed

+44
-6
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
ruby: [3.1, 3.2, 3.3]
11+
ruby: [3.3, 3.4]
1212
gemfile:
1313
- Gemfile
14-
- gemfiles/activesupport_6_0.gemfile
15-
- gemfiles/activesupport_6_1.gemfile
1614
- gemfiles/activesupport_7_0.gemfile
1715
- gemfiles/activesupport_7_1.gemfile
16+
- gemfiles/activesupport_7_2.gemfile
17+
- gemfiles/activesupport_8_0.gemfile
1818
env:
1919
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
2020
steps:

Appraisals

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
require 'appraisal/matrix'
44

5-
appraisal_matrix(activesupport: "6.0")
5+
appraisal_matrix(activesupport: "7.0")

gemfiles/activesupport_7_0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
gem "coveralls", require: false
66
gem "appraisal"
7-
gem "appraisal-matrix", "0.1.0"
7+
gem "appraisal-matrix"
88
gem "bump", "~> 0.6.1"
99
gem "pry"
1010
gem "rake"

gemfiles/activesupport_7_1.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
gem "coveralls", require: false
66
gem "appraisal"
7-
gem "appraisal-matrix", "0.1.0"
7+
gem "appraisal-matrix"
88
gem "bump", "~> 0.6.1"
99
gem "pry"
1010
gem "rake"

gemfiles/activesupport_7_2.gemfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "coveralls", require: false
6+
gem "appraisal"
7+
gem "appraisal-matrix"
8+
gem "bump", "~> 0.6.1"
9+
gem "pry"
10+
gem "rake"
11+
gem "rubocop", "0.54.0"
12+
gem "rubocop-git"
13+
gem "ruby-prof"
14+
gem "ruby-prof-flamegraph"
15+
gem "rspec"
16+
gem "rspec_junit_formatter"
17+
gem "activesupport", "~> 7.2.0"
18+
19+
gemspec path: "../"

gemfiles/activesupport_8_0.gemfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "coveralls", require: false
6+
gem "appraisal"
7+
gem "appraisal-matrix"
8+
gem "bump", "~> 0.6.1"
9+
gem "pry"
10+
gem "rake"
11+
gem "rubocop", "0.54.0"
12+
gem "rubocop-git"
13+
gem "ruby-prof"
14+
gem "ruby-prof-flamegraph"
15+
gem "rspec"
16+
gem "rspec_junit_formatter"
17+
gem "activesupport", "~> 8.0.0"
18+
19+
gemspec path: "../"

0 commit comments

Comments
 (0)