Sha256: 79bccc085fd73fa073e4cae93c8f45ca6bd427fffadae3bd36be60eb80bcf18f

Contents?: true

Size: 998 Bytes

Versions: 88

Compression:

Stored size: 998 Bytes

Contents

# frozen_string_literal: true

require "active_support/core_ext/module/delegation"

module ActiveSupport
  class Deprecation
    module InstanceDelegator # :nodoc:
      def self.included(base)
        base.extend(ClassMethods)
        base.singleton_class.prepend(OverrideDelegators)
        base.public_class_method :new
      end

      module ClassMethods # :nodoc:
        def include(included_module)
          included_module.instance_methods.each { |m| method_added(m) }
          super
        end

        def method_added(method_name)
          singleton_class.delegate(method_name, to: :instance)
        end
      end

      module OverrideDelegators # :nodoc:
        def warn(message = nil, callstack = nil)
          callstack ||= caller_locations(2)
          super
        end

        def deprecation_warning(deprecated_method_name, message = nil, caller_backtrace = nil)
          caller_backtrace ||= caller_locations(2)
          super
        end
      end
    end
  end
end

Version data entries

88 entries across 83 versions & 13 rubygems

Version Path
activesupport-7.0.8.6 lib/active_support/deprecation/instance_delegator.rb
activesupport-6.1.7.10 lib/active_support/deprecation/instance_delegator.rb
activesupport-6.1.7.9 lib/active_support/deprecation/instance_delegator.rb
activesupport-7.0.8.5 lib/active_support/deprecation/instance_delegator.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.8.4/lib/active_support/deprecation/instance_delegator.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/deprecation/instance_delegator.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/deprecation/instance_delegator.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/deprecation/instance_delegator.rb
activesupport-7.0.8.4 lib/active_support/deprecation/instance_delegator.rb
activesupport-6.1.7.8 lib/active_support/deprecation/instance_delegator.rb
activesupport-7.0.8.1 lib/active_support/deprecation/instance_delegator.rb
activesupport-6.1.7.7 lib/active_support/deprecation/instance_delegator.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/deprecation/instance_delegator.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/deprecation/instance_delegator.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.3.1/lib/active_support/deprecation/instance_delegator.rb
activesupport-7.0.8 lib/active_support/deprecation/instance_delegator.rb
activesupport-7.0.7.2 lib/active_support/deprecation/instance_delegator.rb
activesupport-6.1.7.6 lib/active_support/deprecation/instance_delegator.rb
activesupport-7.0.7.1 lib/active_support/deprecation/instance_delegator.rb
activesupport-6.1.7.5 lib/active_support/deprecation/instance_delegator.rb