Sha256: 8d3ee3e4a6d31c99d96e772a2d2bda5eb9c4a7d4caed603434f71b01a834737d
Contents?: true
Size: 1.14 KB
Versions: 10
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true require_relative '../integration' require_relative 'configuration/settings' require_relative 'patcher' module Datadog module Tracing module Contrib module ActiveModelSerializers # Description of ActiveModelSerializers integration class Integration include Contrib::Integration MINIMUM_VERSION = Gem::Version.new('0.9.0') # @public_api Changing the integration name or integration options can cause breaking changes register_as :active_model_serializers def self.version Gem.loaded_specs['active_model_serializers'] \ && Gem.loaded_specs['active_model_serializers'].version end def self.loaded? !defined?(::ActiveModel::Serializer).nil? \ && !defined?(::ActiveSupport::Notifications).nil? end def self.compatible? super && version >= MINIMUM_VERSION end def new_configuration Configuration::Settings.new end def patcher Patcher end end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems