From 46df4f2fa40944efe8b7c593603df6b6eb38d56a Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Mon, 27 Nov 2023 23:20:10 +0000 Subject: [PATCH] Mitigate truffleruby failure by using unreleased stringio gem The fix has been merged but not released yet: https://github.com/ruby/stringio/pull/71 --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index 11be29977..67b8b9a13 100644 --- a/Gemfile +++ b/Gemfile @@ -22,3 +22,6 @@ if RUBY_VERSION >= "3.0.0" gem "rbs" gem "prism", ">= 0.18.0" end + +# Remove this after stringio 3.1.0 is released +gem "stringio", github: "ruby/stringio"