Sha256: 7e651b1708d77badb42aa51a4ddd6e0633c8f0faea71e4d381f813fd293d98ad
Contents?: true
Size: 941 Bytes
Versions: 1
Compression:
Stored size: 941 Bytes
Contents
# frozen_string_literal: true # Copyright The OpenTelemetry Authors # # SPDX-License-Identifier: Apache-2.0 module OpenTelemetry module Instrumentation module ActionView # The Instrumentation class contains logic to detect and install the ActionView instrumentation class Instrumentation < OpenTelemetry::Instrumentation::Base MINIMUM_VERSION = Gem::Version.new('5.2.0') install do |_config| require_dependencies end present do defined?(::ActionView) end compatible do Gem.loaded_specs['actionview'].version >= MINIMUM_VERSION end option :disallowed_notification_payload_keys, default: [], validate: :array option :notification_payload_transform, default: nil, validate: :callable private def require_dependencies require_relative 'railtie' end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opentelemetry-instrumentation-action_view-0.2.0 | lib/opentelemetry/instrumentation/action_view/instrumentation.rb |