module Utils::IRB::Shell

def irb_all_methods(obj)

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