Sha256: 31cf67233e14c131020da246af14e2ff420b15a72fa0501b50e40eddfbd036b3
Contents?: true
Size: 982 Bytes
Versions: 3
Compression:
Stored size: 982 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_version >= MINIMUM_VERSION end option :disallowed_notification_payload_keys, default: [], validate: :array option :notification_payload_transform, default: nil, validate: :callable private def gem_version ::ActionView.version end def require_dependencies require_relative 'railtie' end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems