We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0521c5b commit 9890699Copy full SHA for 9890699
instrumentation/all/Gemfile
@@ -15,9 +15,10 @@ group :test do
15
.sort
16
.each { |dir| gem "opentelemetry-helpers-#{dir}", path: "../../helpers/#{dir}" }
17
18
+ excluded_instrumentations = %w[. .. all grpc]
19
Dir.entries('../')
20
.select { |entry| File.directory?(File.join('../', entry)) }
- .reject { |entry| %w[. .. all].include?(entry) } # rubocop:disable Performance/CollectionLiteralInLoop
21
+ .reject { |entry| excluded_instrumentations.include?(entry) }
22
23
.each { |dir| gem "opentelemetry-instrumentation-#{dir}", path: "../#{dir}" }
24
end
0 commit comments