module Utils::IRB::Shell

def irb_all_methods(obj = self)

Returns:
  • (Array) - an array of wrapped method objects for interactive use

Parameters:
  • obj (Object) -- the object whose methods are to be retrieved
def irb_all_methods(obj = self)
  methods = obj.methods
  irb_wrap_methods obj, methods
end