source: extensions/gsdl-video/trunk/installed/cmdline/lib/ruby/1.8/irb/cmd/subirb.rb@ 18425

Last change on this file since 18425 was 18425, checked in by davidb, 15 years ago

Video extension to Greenstone

File size: 658 bytes
Line 
1#!/usr/local/bin/ruby
2#
3# multi.rb -
4# $Release Version: 0.9.5$
5# $Revision: 11708 $
6# $Date: 2007-02-13 08:01:19 +0900 (Tue, 13 Feb 2007) $
7# by Keiju ISHITSUKA([email protected])
8#
9# --
10#
11#
12#
13
14require "irb/cmd/nop.rb"
15require "irb/ext/multi-irb"
16
17module IRB
18 module ExtendCommand
19 class IrbCommand<Nop
20 def execute(*obj)
21 IRB.irb(nil, *obj)
22 end
23 end
24
25 class Jobs<Nop
26 def execute
27 IRB.JobManager
28 end
29 end
30
31 class Foreground<Nop
32 def execute(key)
33 IRB.JobManager.switch(key)
34 end
35 end
36
37 class Kill<Nop
38 def execute(*keys)
39 IRB.JobManager.kill(*keys)
40 end
41 end
42 end
43end
Note: See TracBrowser for help on using the repository browser.