module Utils::IRB::Shell

def irb_instance_methods(modul = self)

in methods.
Return instance methods defined in module modul without the inherited/mixed
def irb_instance_methods(modul = self)
  methods = modul.instance_methods(false)
  irb_wrap_methods modul, methods, true
end