Sha256: 09684c4ec7c9289670833ad0f89dba6043569d6b293761c18c48ab4778dfad92

Contents?: true

Size: 1.25 KB

Versions: 5

Compression:

Stored size: 1.25 KB

Contents

# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true

module Contrast
  module Framework
    module Rails
      module Rewrite
        # Used to monkey patch all the inherited calls in action_pack
        # TODO: RUBY-714 remove w/ EOL of 2.5
        # @deprecated Changes to this class are discouraged as this approach is
        #   being phased out with support for those language versions.
        module ActiveRecordTimeZoneInherited
          def self.instrument
            @_instrument ||= begin
              ::ActiveRecord::AttributeMethods::TimeZoneConversion::ClassMethods.class_eval do
                private

                alias_method :cs__patched_inherited, :inherited
                def inherited klass # rubocop:disable Lint/MissingSuper
                  klass&.instance_variable_set(:@cs__defining_class, true)
                  cs__patched_inherited(klass) # This calls the original inherited, which should handle super as needed.
                ensure
                  klass&.instance_variable_set(:@cs__defining_class, false)
                end
              end
              true
            end
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
contrast-agent-4.4.1 lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb
contrast-agent-4.4.0 lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb
contrast-agent-4.3.2 lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb
contrast-agent-4.3.1 lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb
contrast-agent-4.3.0 lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb