method

inherited

rails latest stable - Class: ActiveSupport::ProxyObject

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

inherited(_subclass)
public

No documentation available.

# File activesupport/lib/active_support/proxy_object.rb, line 13
    def self.inherited(_subclass)
      ::ActiveSupport.deprecator.warn(<<~MSG)
        ActiveSupport::ProxyObject is deprecated and will be removed in Rails 8.0.
        Use Ruby's built-in BasicObject instead.
      MSG
    end
  end
end