From cc49ad77feb91552f231ee37f39aec07a149c14a Mon Sep 17 00:00:00 2001 From: Ariel Valentin Date: Sun, 16 Jun 2024 10:51:22 -0500 Subject: [PATCH] test: Fix grape test suite `builder` was removed as a dependency to `grape` but is used by active support in some versions. See ruby-grape/grape#2443 See ruby-grape/grape#2445 Fixes https://github.com/open-telemetry/opentelemetry-ruby-contrib/issues/1015 --- instrumentation/grape/Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/instrumentation/grape/Gemfile b/instrumentation/grape/Gemfile index ed1ec924e..a97f3cccf 100644 --- a/instrumentation/grape/Gemfile +++ b/instrumentation/grape/Gemfile @@ -15,4 +15,5 @@ gemspec group :test do gem 'opentelemetry-instrumentation-base', path: '../base' gem 'opentelemetry-instrumentation-rack', path: '../rack' + gem 'builder' end