module Utils::IRB::Shell

def irb_all_class_instance_methods(obj = self)

Returns:
  • (Array) - an array of wrapped method objects suitable for IRB interaction

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