|
From: <caw...@us...> - 2007-08-09 12:41:35
|
Revision: 2944
http://rubyeclipse.svn.sourceforge.net/rubyeclipse/?rev=2944&view=rev
Author: cawilliams
Date: 2007-08-09 05:41:34 -0700 (Thu, 09 Aug 2007)
Log Message:
-----------
move stream flush script to it's own directory to further try to minimze possibility of having added it's folder to loadpath from causing filename load collisions.
Modified Paths:
--------------
trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMRunner.java
Added Paths:
-----------
trunk/org.rubypeople.rdt.launching/ruby/flush/rdt_stream_sync.rb
Removed Paths:
-------------
trunk/org.rubypeople.rdt.launching/ruby/rdt_stream_sync.rb
Copied: trunk/org.rubypeople.rdt.launching/ruby/flush/rdt_stream_sync.rb (from rev 2941, trunk/org.rubypeople.rdt.launching/ruby/rdt_stream_sync.rb)
===================================================================
--- trunk/org.rubypeople.rdt.launching/ruby/flush/rdt_stream_sync.rb (rev 0)
+++ trunk/org.rubypeople.rdt.launching/ruby/flush/rdt_stream_sync.rb 2007-08-09 12:41:34 UTC (rev 2944)
@@ -0,0 +1,2 @@
+STDOUT.sync = true
+STDERR.sync = true
\ No newline at end of file
Deleted: trunk/org.rubypeople.rdt.launching/ruby/rdt_stream_sync.rb
===================================================================
--- trunk/org.rubypeople.rdt.launching/ruby/rdt_stream_sync.rb 2007-08-09 12:41:26 UTC (rev 2943)
+++ trunk/org.rubypeople.rdt.launching/ruby/rdt_stream_sync.rb 2007-08-09 12:41:34 UTC (rev 2944)
@@ -1,2 +0,0 @@
-STDOUT.sync = true
-STDERR.sync = true
\ No newline at end of file
Modified: trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMRunner.java
===================================================================
--- trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMRunner.java 2007-08-09 12:41:26 UTC (rev 2943)
+++ trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMRunner.java 2007-08-09 12:41:34 UTC (rev 2944)
@@ -268,7 +268,7 @@
}
protected void addStreamSync(List<String> arguments) {
- File sync = LaunchingPlugin.getFileInPlugin(new Path("ruby").append(STREAM_FLUSH_SCRIPT));
+ File sync = LaunchingPlugin.getFileInPlugin(new Path("ruby").append("flush").append(STREAM_FLUSH_SCRIPT));
arguments.add(LOADPATH_SWITCH);
arguments.add(sync.getParent());
arguments.add("-r" + STREAM_FLUSH_SCRIPT);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|