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)


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

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

.loaded?Boolean

Returns:

  • (Boolean)


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

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

.versionObject



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

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

Instance Method Details

#default_configurationObject



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

def default_configuration
  Configuration::Settings.new
end

#patcherObject



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

def patcher
  Patcher
end