Method: RubyDebugView#start_process
- Defined in:
- ext/ae-ruby-debug/ae-ruby-debug.rb
#start_process(_filename) ⇒ Object
149 150 151 152 153 154 155 156 157 |
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 149 def start_process(_filename) @tree_process.insert('end', 'root' ,'server', { 'text' => "Server => #{File.basename(_filename)} at #{@controller.conf('server.host')}:#{@controller.conf('server.port')}" }.update(Arcadia.style('treeitem'))) @tree_process.insert('end', 'server' ,'client', { 'text' => "Client" }.update(Arcadia.style('treeitem'))) @tree_process.open_tree('server',true) end |