We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b98ebe8 commit 3bb36a6Copy full SHA for 3bb36a6
releases/Gemfile
@@ -47,8 +47,10 @@ Dir['../propagator/**/version.rb'].each do |f|
47
gem "opentelemetry-propagator-#{name}", version
48
end
49
50
+excluded_instrumentations = %w[grpc]
51
Dir['../instrumentation/**/version.rb'].each do |f|
52
name = f.match(%r{instrumentation/(\w+)/lib})[1]
53
+ next if excluded_instrumentations.include?(name)
54
55
version = File.read(f).match(/VERSION = '([\d\.]+)'/)[1]
56
gem "opentelemetry-instrumentation-#{name}", version
0 commit comments