Sha256: 29dd0b2929d417a75f2b926590697d355e96b033ce56c016cac05fd583f8568a
Contents?: true
Size: 427 Bytes
Versions: 20
Compression:
Stored size: 427 Bytes
Contents
# frozen_string_literal: true module ActiveSupport # = Active Support Proxy \Object # # 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
Version data entries
20 entries across 20 versions & 6 rubygems