mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-15 19:56:59 +08:00
34 lines
522 B
Ruby
34 lines
522 B
Ruby
require 'irb'
|
|
|
|
module IRB
|
|
@setup_done = false
|
|
|
|
def IRB.parse_opts
|
|
end
|
|
|
|
def IRB.start_within(binding)
|
|
unless @setup_done
|
|
IRB.setup(nil)
|
|
@setup_done = 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
|
|
|
|
trap("SIGINT") do
|
|
irb.signal_handle
|
|
end
|
|
|
|
begin
|
|
catch(:IRB_EXIT) do
|
|
irb.eval_input
|
|
end
|
|
ensure
|
|
irb_at_exit
|
|
end
|
|
end
|
|
end
|