Class: Datadog::Contrib::ActionView::Integration

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

Overview

Describes the ActionView integration

Constant Summary collapse

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

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Integration

included

Class Method Details

.compatible?Boolean

Returns:

  • (Boolean)


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

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

.loaded?Boolean

Returns:

  • (Boolean)


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

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

.versionObject



16
17
18
19
20
21
22
23
24
25
# File 'lib/ddtrace/contrib/action_view/integration.rb', line 16

def self.version
  # ActionView is its own gem in Rails 4.1+
  if Gem.loaded_specs['actionview']
    Gem.loaded_specs['actionview'].version
  # ActionView is embedded in ActionPack in versions < 4.1
  elsif Gem.loaded_specs['actionpack']
    action_pack_version = Gem.loaded_specs['actionpack'].version
    action_pack_version unless action_pack_version >= Gem::Version.new('4.1')
  end
end

Instance Method Details

#default_configurationObject



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

def default_configuration
  Configuration::Settings.new
end

#patcherObject



39
40
41
# File 'lib/ddtrace/contrib/action_view/integration.rb', line 39

def patcher
  ActionView::Patcher
end