module Utils::IRB::Shell

def irb_wrap_methods(obj, methods, modul = false)

def irb_wrap_methods(obj, methods, modul = false)
  methods.map do |name|
    MethodWrapper.new(obj, name, modul) rescue nil
  end.compact.sort!
end