Module: IRB

Defined in:
lib/ir_b.rb

Class Method Summary collapse

Class Method Details

.start_session(binding) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/ir_b.rb', line 5

def self.start_session(binding)
  unless @__irb_initialized
    args = ARGV.dup
    ARGV.clear
    IRB.setup(nil)
    ARGV.replace(args)
    @__irb_initialized = true
  end

  workspace = WorkSpace.new(binding)

  irb = Irb.new(workspace)

  @CONF[:IRB_RC].call(irb.context) if @CONF[:IRB_RC]
  @CONF[:MAIN_CONTEXT] = irb.context

  catch(:IRB_EXIT) do
    irb.eval_input
  end
end