Type:
Class

This DeprecatedConstantProxy transforms constant to deprecated constant.

1
2
OLD_CONST = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('OLD_CONST', 'NEW_CONST')
OLD_CONST = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('OLD_CONST', 'NEW_CONST', deprecator_instance)

When someone use old constant this will trigger warn method on deprecator_instance.

Default deprecator is ActiveSupport::Deprecation.

class
  • References/Ruby on Rails/Rails/Classes/ActiveSupport/ActiveSupport::Deprecation/ActiveSupport::Deprecation::DeprecatedConstantProxy

class() Instance Public methods

2025-01-10 15:47:30
new
  • References/Ruby on Rails/Rails/Classes/ActiveSupport/ActiveSupport::Deprecation/ActiveSupport::Deprecation::DeprecatedConstantProxy

new(old_const, new_const, deprecator = ActiveSupport::Deprecation.instance) Class Public methods

2025-01-10 15:47:30