Skip to content

Commit b024c5a

Browse files
authored
Merge pull request #846 from Shopify/uk-bump-to-ruby-4
Bump gem to use Ruby 4.0
2 parents b492676 + dfc4eb0 commit b024c5a

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest]
18-
ruby: ["3.2", "3.3", "3.4"]
18+
ruby: ["3.2", "3.3", "3.4", "4.0"]
1919
name: ${{ matrix.os }} ${{ matrix.ruby }}
2020
runs-on: ${{ matrix.os }}
2121
steps:

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-3.4.4
1+
4.0.0

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ GEM
115115
tsort (0.2.0)
116116
unicode-display_width (3.2.0)
117117
unicode-emoji (~> 4.1)
118-
unicode-emoji (4.1.0)
118+
unicode-emoji (4.2.0)
119119
yard (0.9.38)
120120
yard-sorbet (0.9.0)
121121
sorbet-runtime
@@ -141,4 +141,4 @@ DEPENDENCIES
141141
tapioca
142142

143143
BUNDLED WITH
144-
2.5.6
144+
4.0.3

test/spoom/context/bundle_test.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ def test_context_bundle_install!
3737
context = Context.mktmp!
3838

3939
res = context.bundle_install!
40-
assert_empty(res.out)
41-
assert_equal("Could not locate Gemfile\n", res.err)
40+
assert_includes(res.err, "Could not locate Gemfile")
4241
refute(res.status)
4342

4443
context.write_gemfile!(<<~GEMFILE)

0 commit comments

Comments
 (0)