summaryrefslogtreecommitdiff
path: root/lib/irb/cmd/subirb.rb
blob: 5f3e02c988ef8be2d36ffe175d54bf769bcfab13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# frozen_string_literal: false
#
#   multi.rb -
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#

require_relative "nop"

module IRB
  # :stopdoc:

  module ExtendCommand
    class MultiIRBCommand < Nop
      def initialize(conf)
        super
        extend_irb_context
      end

      private

      def extend_irb_context
        # this extension patches IRB context like IRB.CurrentContext
        require_relative "../ext/multi-irb"
      end
    end

    class IrbCommand < MultiIRBCommand
      category "IRB"
      description "Start a child IRB."

      def execute(*obj)
        IRB.irb(nil, *obj)
      end
    end

    class Jobs < MultiIRBCommand
      category "IRB"
      description "List of current sessions."

      def execute
        IRB.JobManager
      end
    end

    class Foreground < MultiIRBCommand
      category "IRB"
      description "Switches to the session of the given number."

      def execute(key = nil)
        raise CommandArgumentError.new("Please specify the id of target IRB job (listed in the `jobs` command).") unless key
        IRB.JobManager.switch(key)
      end
    end

    class Kill < MultiIRBCommand
      category "IRB"
      description "Kills the session with the given number."

      def execute(*keys)
        IRB.JobManager.kill(*keys)
      end
    end
  end

  # :startdoc:
end