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