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.
Show source
def initialize(bind = nil)
IRB.init_config(nil)
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[:MAIN_CONTEXT] = @irb.context
end