From 11c87ffadaaf563b376f91569fa2048a894b40a7 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 29 Oct 2025 13:08:02 +0000 Subject: [PATCH 1/2] Add ruby-head to the test matrix --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40c6f9d..2010c7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,7 @@ jobs: - '3.2' - '3.3' - '3.4' + - 'head' - 'jruby-9.4' gemfile: - rails7.0 From 033bfcabd0c67d51605fbdd8dd1c8f33f49a91d0 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 29 Oct 2025 13:13:02 +0000 Subject: [PATCH 2/2] Add ostruct gem for Ruby 3.5 compatibility Ruby 3.5.0 removed ostruct from default gems. Since rake depends on it, we need to explicitly add it as a dependency to fix CI failures on Ruby head. Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- gemfiles/common.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/gemfiles/common.rb b/gemfiles/common.rb index acdc138..b2e6c7b 100644 --- a/gemfiles/common.rb +++ b/gemfiles/common.rb @@ -5,3 +5,4 @@ gem 'maxitest' gem 'mocha' gem 'rake' +gem 'ostruct'