2009-03-06 03:56:38 +00:00
|
|
|
# multi.rb -
|
2009-07-07 11:36:20 +00:00
|
|
|
# $Release Version: 0.9.6$
|
2002-07-09 11:17:17 +00:00
|
|
|
# $Revision$
|
2005-04-13 15:27:09 +00:00
|
|
|
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
|
2002-07-09 11:17:17 +00:00
|
|
|
#
|
|
|
|
# --
|
|
|
|
#
|
2009-03-06 03:56:38 +00:00
|
|
|
#
|
2002-07-09 11:17:17 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
require "irb/cmd/nop.rb"
|
|
|
|
require "irb/ext/multi-irb"
|
|
|
|
|
|
|
|
module IRB
|
|
|
|
module ExtendCommand
|
|
|
|
class IrbCommand<Nop
|
|
|
|
def execute(*obj)
|
|
|
|
IRB.irb(nil, *obj)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Jobs<Nop
|
|
|
|
def execute
|
|
|
|
IRB.JobManager
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Foreground<Nop
|
|
|
|
def execute(key)
|
|
|
|
IRB.JobManager.switch(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Kill<Nop
|
|
|
|
def execute(*keys)
|
|
|
|
IRB.JobManager.kill(*keys)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|