?
Current Path : /usr/share/ruby/irb/cmd/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : //usr/share/ruby/irb/cmd/subirb.rb |
# multi.rb - # $Release Version: 0.9.6$ # $Revision: 38358 $ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # require "irb/cmd/nop.rb" require "irb/ext/multi-irb" # :stopdoc: 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 # :startdoc: