From fb886ad4643d0a5a0e7b462b1f5e32dd4ed6c3a4 Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Mon, 22 Apr 2024 15:59:18 +0200 Subject: [PATCH] Remove reference to BlankSlate This has actually been removed from the builder gem in https://github.com/rails/builder/pull/15 Additionally, `BasicObject` will be more familiar to users. --- activesupport/lib/active_support/proxy_object.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/activesupport/lib/active_support/proxy_object.rb b/activesupport/lib/active_support/proxy_object.rb index 8ac9bd71f181f..fc851409dc722 100644 --- a/activesupport/lib/active_support/proxy_object.rb +++ b/activesupport/lib/active_support/proxy_object.rb @@ -3,8 +3,8 @@ module ActiveSupport # = Active Support Proxy \Object # - # A class with no predefined methods that behaves similarly to Builder's - # BlankSlate. Used for proxy classes. + # A class with no predefined methods that behaves similarly to Ruby's + # BasicObject. Used for proxy classes. class ProxyObject < ::BasicObject undef_method :== undef_method :equal?