blob: a2bdf1d79082f52921691f172b1bf2e47fb59edd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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::BasicObject at least raise exceptions.
def raise(*args)
::Object.send(:raise, *args)
end
end
end
|