method

inherited

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