class Utils::IRB::Shell::MethodWrapper

def initialize(obj, name, modul)

def initialize(obj, name, modul)
  super(name)
  @method = modul ? obj.instance_method(name) : obj.method(name)
  @description = "#{owner}##@name(#{arity})"
end