Sha256: 8b9523d498108dc1b3ef8d110711f04886e004e7400b571e2211d1055cbc6135

Contents?: true

Size: 1.68 KB

Versions: 1

Compression:

Stored size: 1.68 KB

Contents

# frozen_string_literal: true

require_relative 'configuration/settings'
require_relative 'patcher'
require_relative '../integration'
require_relative '../rails/integration'
require_relative '../rails/utils'

module Datadog
  module Tracing
    module Contrib
      module ActionView
        # Describes the ActionView integration
        class Integration
          include Contrib::Integration

          MINIMUM_VERSION = Contrib::Rails::Ext::MINIMUM_VERSION

          # @public_api Changing the integration name or integration options can cause breaking changes
          register_as :action_view, auto_patch: false

          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

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

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

          # enabled by rails integration so should only auto instrument
          # if detected that it is being used without rails
          def auto_instrument?
            !Contrib::Rails::Utils.railtie_supported?
          end

          def new_configuration
            Configuration::Settings.new
          end

          def patcher
            ActionView::Patcher
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
datadog-2.0.0.beta1 lib/datadog/tracing/contrib/action_view/integration.rb