Sha256: d6ce7364ff8d3f8db4f35162ea6e769b159f4d37fe81abd51c1d38f5032719a0
Contents?: true
Size: 1018 Bytes
Versions: 12
Compression:
Stored size: 1018 Bytes
Contents
# typed: false require_relative '../integration' require_relative 'patcher' require_relative 'configuration/settings' module Datadog module Tracing module Contrib module ConcurrentRuby # Describes the ConcurrentRuby integration class Integration include Contrib::Integration MINIMUM_VERSION = Gem::Version.new('0.9') # @public_api Changing the integration name or integration options can cause breaking changes register_as :concurrent_ruby def self.version Gem.loaded_specs['concurrent-ruby'] && Gem.loaded_specs['concurrent-ruby'].version end def self.loaded? !defined?(::Concurrent::Future).nil? end def self.compatible? super && version >= MINIMUM_VERSION end def new_configuration Configuration::Settings.new end def patcher Patcher end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems