Class: ActiveSupport::Deprecation::DeprecatedConstantProxy

Inherits:
DeprecationProxy show all
Defined in:
lib/active_support/deprecation/proxy_wrappers.rb

Overview

:nodoc:all

Instance Method Summary collapse

Methods inherited from DeprecationProxy

#inspect, new

Constructor Details

#initialize(old_const, new_const) ⇒ DeprecatedConstantProxy

Returns a new instance of DeprecatedConstantProxy.



62
63
64
65
# File 'lib/active_support/deprecation/proxy_wrappers.rb', line 62

def initialize(old_const, new_const)
  @old_const = old_const
  @new_const = new_const
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ActiveSupport::Deprecation::DeprecationProxy

Instance Method Details

#classObject



67
68
69
# File 'lib/active_support/deprecation/proxy_wrappers.rb', line 67

def class
  target.class
end