Class: Datadog::Contrib::Sneakers::Integration

Inherits:
Object
  • Object
show all
Includes:
Integration
Defined in:
lib/ddtrace/contrib/sneakers/integration.rb

Overview

Description of Sneakers integration

Constant Summary collapse

MINIMUM_VERSION =
Gem::Version.new('2.12.0')

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Integration

included

Class Method Details

.compatible?Boolean

Returns:

  • (Boolean)


28
29
30
# File 'lib/ddtrace/contrib/sneakers/integration.rb', line 28

def self.compatible?
  super && version >= MINIMUM_VERSION
end

.loaded?Boolean

Returns:

  • (Boolean)


24
25
26
# File 'lib/ddtrace/contrib/sneakers/integration.rb', line 24

def self.loaded?
  !defined?(::Sneakers).nil?
end

.versionObject



20
21
22
# File 'lib/ddtrace/contrib/sneakers/integration.rb', line 20

def self.version
  Gem.loaded_specs['sneakers'] && Gem.loaded_specs['sneakers'].version
end

Instance Method Details

#default_configurationObject



32
33
34
# File 'lib/ddtrace/contrib/sneakers/integration.rb', line 32

def default_configuration
  Configuration::Settings.new
end

#patcherObject



36
37
38
# File 'lib/ddtrace/contrib/sneakers/integration.rb', line 36

def patcher
  Patcher
end