mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
13 lines
357 B
Ruby
13 lines
357 B
Ruby
module ActiveSupport
|
|
# A class with no predefined methods that behaves similarly to Builder's
|
|
# BlankSlate. Used for proxy classes.
|
|
class ProxyObject < ::BasicObject
|
|
undef_method :==
|
|
undef_method :equal?
|
|
|
|
# Let ActiveSupport::ProxyObject at least raise exceptions.
|
|
def raise(*args)
|
|
::Object.send(:raise, *args)
|
|
end
|
|
end
|
|
end
|