Skip to content

Commit fddf73d

Browse files
committed
chore: Ruby 3.2 minimum, 4.0 default
1 parent 1ef191b commit fddf73d

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ jobs:
1313
strategy:
1414
matrix:
1515
include:
16-
- os: ubuntu-22.04
17-
ruby: "3.1"
18-
task: test , spec
1916
- os: ubuntu-22.04
2017
ruby: "3.2"
2118
task: test , spec
@@ -25,14 +22,17 @@ jobs:
2522
- os: ubuntu-latest
2623
ruby: "3.4"
2724
task: test , spec
25+
- os: ubuntu-latest
26+
ruby: "4.0"
27+
task: test , spec
2828
- os: macos-latest
29-
ruby: "3.4"
29+
ruby: "4.0"
3030
task: test , spec
3131
- os: windows-latest
32-
ruby: "3.4"
32+
ruby: "4.0"
3333
task: test , spec
3434
- os: ubuntu-latest
35-
ruby: "3.4"
35+
ruby: "4.0"
3636
task: rubocop , integration , build , yardoc , linkinator
3737
fail-fast: false
3838
runs-on: ${{ matrix.os }}

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ gem "fakefs", ">= 1.0", "< 4"
77
gem "fakeredis", "~> 0.5"
88
gem "gems", "~> 1.2"
99
gem "google-style", "~> 1.30.1"
10+
gem "irb", "~> 1.17"
1011
gem "logging", "~> 2.0"
1112
gem "minitest", "~> 5.14"
1213
gem "minitest-focus", "~> 1.1"
14+
gem "pstore", "~> 0.2.1"
1315
gem "rack-test", "~> 2.0"
1416
gem "redcarpet", "~> 3.0"
1517
gem "redis", ">= 4.0", "< 6"
1618
gem "rspec", "~> 3.0"
19+
gem "syslog", "~> 0.4.0"
1720
gem "webmock", "~> 3.8"
1821
gem "yard", "~> 0.9"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Custom storage implementations can also be used. See
265265

266266
## Supported Ruby Versions
267267

268-
This library is supported on Ruby 3.0+.
268+
This library is supported on Ruby 3.2+.
269269

270270
Google provides official support for Ruby versions that are actively supported
271271
by Ruby Core—that is, Ruby versions that are either in normal maintenance or

0 commit comments

Comments
 (0)