Skip to Content Skip to Search

class ActiveSupport::ProxyObject

Active Support Proxy Object

A class with no predefined methods that behaves similarly to Builder’s BlankSlate. Used for proxy classes.

Inherits From

Public instance methods

raise(*args)

Permalink

Let ActiveSupport::ProxyObject at least raise exceptions.

Source code GitHub
# File activesupport/lib/active_support/proxy_object.rb, line 13
def raise(*args)
  ::Object.send(:raise, *args)
end

Definition files