module Utils::IRB::Shell

def irb_class_instance_methods(obj = self)

methods.
Return instance methods of obj's class without the inherited/mixed in
def irb_class_instance_methods(obj = self)
  methods = obj.class.instance_methods(false)
  irb_wrap_methods obj, methods
end