Sha256: 896e6eff4379af19604ff362c0e8d0895d9a33e453195a91bd08341cfdc926e6
Contents?: true
Size: 1.11 KB
Versions: 13
Compression:
Stored size: 1.11 KB
Contents
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? # Concurrent::Future is deprecated in favour of Concurrent::Promises::Future !defined?(::Concurrent::Promises::Future).nil? || !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
13 entries across 13 versions & 1 rubygems