Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ["3.2", "3.3", "3.4"]
ruby: ["3.2", "3.3", "3.4", "4.0"]
name: ${{ matrix.os }} ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.4.4
4.0.0
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ GEM
tsort (0.2.0)
unicode-display_width (3.2.0)
unicode-emoji (~> 4.1)
unicode-emoji (4.1.0)
unicode-emoji (4.2.0)
yard (0.9.38)
yard-sorbet (0.9.0)
sorbet-runtime
Expand All @@ -140,4 +140,4 @@ DEPENDENCIES
tapioca

BUNDLED WITH
2.5.6
4.0.3
3 changes: 1 addition & 2 deletions test/spoom/context/bundle_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ def test_context_bundle_install!
context = Context.mktmp!

res = context.bundle_install!
assert_empty(res.out)
assert_equal("Could not locate Gemfile\n", res.err)
assert_includes(res.err, "Could not locate Gemfile")
refute(res.status)

context.write_gemfile!(<<~GEMFILE)
Expand Down