Skip to content

Commit 8616e05

Browse files
authored
Merge pull request #613 from Shopify/ci-rubies
2 parents 1f04aa0 + 555e8e3 commit 8616e05

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
gemfile: [Gemfile, gemfiles/minimum_rubocop.gemfile]
12-
ruby: ["2.7", "3.0", "3.1"]
12+
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"]
1313

1414
env:
1515
BUNDLE_GEMFILE: ${{ matrix.gemfile }}

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.2
1+
3.3.0

Gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@ gem "diffy"
88
gem "minitest"
99
gem "pry-byebug"
1010
gem "rake"
11+
12+
# Fixes the following warning on Ruby 3.3:
13+
# base64 was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.4.0.
14+
# Add base64 to your Gemfile or gemspec. Also contact author of rubocop-1.53.0 to add base64 into its gemspec.
15+
# Check if this is still necessary when the minimum RuboCop version is increased.
16+
gem "base64"

Gemfile.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ GEM
88
remote: https://rubygems.org/
99
specs:
1010
ast (2.4.2)
11+
base64 (0.2.0)
1112
byebug (11.1.3)
1213
coderay (1.1.3)
1314
diffy (3.4.2)
@@ -50,6 +51,7 @@ PLATFORMS
5051
ruby
5152

5253
DEPENDENCIES
54+
base64
5355
diffy
5456
minitest
5557
pry-byebug

0 commit comments

Comments
 (0)