module Utils::IRB::Shell

def irb_all_methods(obj = self)

Return all methods of obj (including obj's eigenmethods.)
def irb_all_methods(obj = self)
  methods = obj.methods
  irb_wrap_methods obj, methods
end