new(bind = nil)
public
Creates a new XMP
object.
The top-level binding or, optional bind parameter will be used
when creating the workspace. See WorkSpace.new for more information.
This uses the :XMP prompt mode, see IRB@Customizing+the+IRB+Prompt for full detail.
# File lib/irb/xmp.rb, line 55
def initialize(bind = nil)
IRB.init_config(nil)
#IRB.parse_opts
#IRB.load_modules
IRB.conf[:PROMPT_MODE] = :XMP
bind = IRB::Frame.top(1) unless bind
ws = IRB::WorkSpace.new(bind)
@io = StringInputMethod.new
@irb = IRB::Irb.new(ws, @io)
@irb.context.ignore_sigint = false
# IRB.conf[:IRB_RC].call(@irb.context) if IRB.conf[:IRB_RC]
IRB.conf[:MAIN_CONTEXT] = @irb.context
end