From 17952c44d523520c3b0c104f62d640832c54d03a Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev Date: Wed, 25 Sep 2024 12:49:53 -0400 Subject: [PATCH] use patched rbs to get RubyVM::InstructionSequence method type definitions --- Gemfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index d25788ece5..491a497cbf 100644 --- a/Gemfile +++ b/Gemfile @@ -82,7 +82,9 @@ end group :check do if RUBY_VERSION >= '3.0.0' && RUBY_PLATFORM != 'java' - gem 'rbs', '~> 3.5.0', require: false + # Go back to released version of rbs when + # https://github.com/ruby/rbs/pull/2027 is included in them. + gem 'rbs', github: 'datadog/rbs', branch: 'iseq' gem 'steep', '~> 1.7.0', require: false end gem 'ruby_memcheck', '>= 3' if RUBY_VERSION >= '3.4.0' && RUBY_PLATFORM != 'java'