|
From: Markus B. <mba...@us...> - 2005-10-09 21:22:34
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.launching/ruby In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1181/ruby Modified Files: eclipseDebug.rb Log Message: fixed port 1098 replaced by variable port Index: eclipseDebug.rb =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.launching/ruby/eclipseDebug.rb,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** eclipseDebug.rb 6 Oct 2005 23:29:45 -0000 1.15 --- eclipseDebug.rb 9 Oct 2005 21:22:28 -0000 1.16 *************** *** 7,11 **** # eclipse. If you change this, you must also change the corresponding port in # org.rubypeople.rdt.internal.debug.core.RubyDebuggerProxy ! ECLIPSE_LISTEN_PORT = 1098 # ECLIPSE_VERBOSE prints tihe communication between eclipse and ruby debugger --- 7,11 ---- # eclipse. If you change this, you must also change the corresponding port in # org.rubypeople.rdt.internal.debug.core.RubyDebuggerProxy ! ECLIPSE_LISTEN_PORT = (defined? $EclipseListenPort) ? $EclipseListenPort : 1098 # ECLIPSE_VERBOSE prints tihe communication between eclipse and ruby debugger |