From 3f46e7a57244b5c7dae1598e3b47cc417c9bdbec Mon Sep 17 00:00:00 2001 From: Ariel Valentin Date: Sun, 16 Jun 2024 10:58:25 -0500 Subject: [PATCH] test: Fix grape test suite (#1017) `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