Method: Fox::FXIrb#create
- Defined in:
- lib/fox16/irb.rb
#create ⇒ Object
111 112 113 114 115 116 117 118 119 120 |
# File 'lib/fox16/irb.rb', line 111 def create super setFocus # IRB initialization @redir = Redirect.new(self) @input = IO.pipe @irb = Thread.new { IRB.start_in_fxirb(@redir) } end |