Sha256: 34ba9f2c902a286c90e7d2d0ddd603b1062b1d77e7e35b0414df1088603ccbab
Contents?: true
Size: 1.14 KB
Versions: 12
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true 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
12 entries across 12 versions & 1 rubygems