Sha256: bb6fe66b336d1d9ee4cfd4a48ca9d2eaafedd93c9400a250f0585d15624fbd25
Contents?: true
Size: 1.03 KB
Versions: 4
Compression:
Stored size: 1.03 KB
Contents
# typed: false require 'datadog/tracing/contrib/integration' require 'datadog/tracing/contrib/delayed_job/configuration/settings' require 'datadog/tracing/contrib/delayed_job/patcher' module Datadog module Tracing module Contrib module DelayedJob # Description of DelayedJob integration class Integration include Contrib::Integration MINIMUM_VERSION = Gem::Version.new('4.1') # @public_api Changing the integration name or integration options can cause breaking changes register_as :delayed_job def self.version Gem.loaded_specs['delayed_job'] && Gem.loaded_specs['delayed_job'].version end def self.loaded? !defined?(::Delayed).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
4 entries across 4 versions & 1 rubygems