protected_methods(all=true)
Returns the methods available to this delegate object as the union of this object’s and __getobj__ protected methods.
# File lib/delegate.rb, line 126 def protected_methods(all=true) __getobj__.protected_methods(all) | super end