|
From: <caw...@us...> - 2007-08-09 12:30:41
|
Revision: 2940
http://rubyeclipse.svn.sourceforge.net/rubyeclipse/?rev=2940&view=rev
Author: cawilliams
Date: 2007-08-09 05:30:38 -0700 (Thu, 09 Aug 2007)
Log Message:
-----------
fix #5493 - RDT's sync.rb stream flushing script clashes names with a ruby Standard library file
Modified Paths:
--------------
trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java
Modified: trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java
===================================================================
--- trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java 2007-08-08 16:50:16 UTC (rev 2939)
+++ trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java 2007-08-09 12:30:38 UTC (rev 2940)
@@ -110,10 +110,10 @@
buffer.append(" -I ");
if (Platform.getOS().equals(Platform.OS_WIN32))
buffer.append("\"");
- buffer.append(LaunchingPlugin.getFileInPlugin(new Path("ruby/sync.rb")).getParent());
+ buffer.append(LaunchingPlugin.getFileInPlugin(new Path("ruby").append(StandardVMRunner.STREAM_FLUSH_SCRIPT)).getParent());
if (Platform.getOS().equals(Platform.OS_WIN32))
buffer.append("\"");
- buffer.append(" -rsync.rb");
+ buffer.append(" -r" + StandardVMRunner.STREAM_FLUSH_SCRIPT);
}
public void testDebugEnabled() throws Exception {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|