Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

DLTK Ruby RemoteDebugger

Revision as of 21:49, 15 January 2009 by Alex.xored.com (Talk | contribs) (New page: This document describes how to start remote debugger using fast ruby debugger (ruby-debug gem). == Extract DLTK ruby code == You need to extract .rb files from the following plugins - or...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This document describes how to start remote debugger using fast ruby debugger (ruby-debug gem).

Extract DLTK ruby code

You need to extract .rb files from the following plugins - org.eclipse.dltk.ruby.abstractdebugger - org.eclipse.dltk.ruby.fastdebugger

for example I have extracted them to the C:\DLTK-RUBY-DBG, now that folder contains the following files:

C:\DLTK-RUBY-DBG\AbstractRunner.rb C:\DLTK-RUBY-DBG\FastRunner.rb C:\DLTK-RUBY-DBG\common\FileLogManager.rb C:\DLTK-RUBY-DBG\common\Logger.rb C:\DLTK-RUBY-DBG\common\NullLogManager.rb C:\DLTK-RUBY-DBG\common\Params.rb C:\DLTK-RUBY-DBG\common\StdoutLogManager.rb C:\DLTK-RUBY-DBG\dbgp\BreakpointElement.rb C:\DLTK-RUBY-DBG\dbgp\CaptureManager.rb C:\DLTK-RUBY-DBG\dbgp\Command.rb C:\DLTK-RUBY-DBG\dbgp\CommandHandler.rb C:\DLTK-RUBY-DBG\dbgp\Communicator.rb C:\DLTK-RUBY-DBG\dbgp\DbgpThread.rb C:\DLTK-RUBY-DBG\dbgp\ErrorElement.rb C:\DLTK-RUBY-DBG\dbgp\ErrorMessages.rb C:\DLTK-RUBY-DBG\dbgp\InitPacket.rb C:\DLTK-RUBY-DBG\dbgp\PropertyElement.rb C:\DLTK-RUBY-DBG\dbgp\PropertyUtils.rb C:\DLTK-RUBY-DBG\dbgp\Response.rb C:\DLTK-RUBY-DBG\dbgp\SourceManager.rb C:\DLTK-RUBY-DBG\dbgp\StackLevelElement.rb C:\DLTK-RUBY-DBG\dbgp\StreamPacket.rb C:\DLTK-RUBY-DBG\dbgp\ThreadEventHandler.rb C:\DLTK-RUBY-DBG\dbgp\ThreadManager.rb C:\DLTK-RUBY-DBG\dbgp\Utils.rb C:\DLTK-RUBY-DBG\dbgp\XmlElement.rb C:\DLTK-RUBY-DBG\debugger\AbstractBreakpointManager.rb C:\DLTK-RUBY-DBG\debugger\AbstractContext.rb C:\DLTK-RUBY-DBG\debugger\AbstractDebugger.rb C:\DLTK-RUBY-DBG\debugger\BreakpointContracts.rb C:\DLTK-RUBY-DBG\debugger\DebugEventHandler.rb C:\DLTK-RUBY-DBG\debugger\Exceptions.rb C:\DLTK-RUBY-DBG\debugger\FeatureManager.rb C:\DLTK-RUBY-DBG\debugger\SimpleBreakpoints.rb C:\DLTK-RUBY-DBG\debugger\StackLevelInfo.rb C:\DLTK-RUBY-DBG\fast\FastBreakpointManager.rb C:\DLTK-RUBY-DBG\fast\FastContext.rb C:\DLTK-RUBY-DBG\fast\FastDebugger.rb C:\DLTK-RUBY-DBG\fast\FastLineBreakpoint.rb

Start debugger

To start debugging you need to execute commands similar to the following:

  1. set address of the machine the Eclipse DLTK is running on

set DBGP_RUBY_HOST=192.168.3.135

  1. set ide key specified in the remote launch configuration

set DBGP_RUBY_KEY=REMOTE-DEBUG-1

  1. set port (can be configured in preferences)

set DBGP_RUBY_PORT=10000

  1. start ruby where START.rb is the main file of the application.

c:\ruby\bin\ruby.exe -I C:\DLTK-RUBY-DBG -r FastRunner.rb START.rb

                                 --

Back to the top