diff options
Diffstat (limited to 'lib/irb/cmd/subirb.rb')
| -rw-r--r-- | lib/irb/cmd/subirb.rb | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/lib/irb/cmd/subirb.rb b/lib/irb/cmd/subirb.rb deleted file mode 100644 index 7899f1bb43..0000000000 --- a/lib/irb/cmd/subirb.rb +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/local/bin/ruby -# -# multi.rb - -# $Release Version: 0.9$ -# $Revision$ -# $Date$ -# by Keiju ISHITSUKA(Nihon Rational Software Co.,Ltd) -# -# -- -# -# -# - -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 |
