From 84071c1da1b4c6210fcc2ffa988f1ffd2d2c8154 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 5 Jan 2026 18:27:02 +0000 Subject: [PATCH 1/2] Add Ruby 4.0 support to CI test matrix --- .github/workflows/rspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml index 49028ad..d90c0e8 100644 --- a/.github/workflows/rspec.yml +++ b/.github/workflows/rspec.yml @@ -5,7 +5,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["2.7", "3.1", "3.2", "3.3", "3.4", ruby-head] + ruby: ["2.7", "3.1", "3.2", "3.3", "3.4", "4.0", ruby-head] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 From 686e97ae7241ab1b01ae7b4d867655015cf040c4 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 5 Jan 2026 22:14:08 +0000 Subject: [PATCH 2/2] Fix YAML formatting: quote ruby-head for consistency --- .github/workflows/rspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml index d90c0e8..dd3b818 100644 --- a/.github/workflows/rspec.yml +++ b/.github/workflows/rspec.yml @@ -5,7 +5,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["2.7", "3.1", "3.2", "3.3", "3.4", "4.0", ruby-head] + ruby: ["2.7", "3.1", "3.2", "3.3", "3.4", "4.0", "ruby-head"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3