|
From: <caw...@us...> - 2007-01-24 23:39:59
|
Revision: 1877
http://svn.sourceforge.net/rubyeclipse/?rev=1877&view=rev
Author: cawilliams
Date: 2007-01-24 15:39:11 -0800 (Wed, 24 Jan 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMDebugger.java
trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/launching/VMRunnerConfiguration.java
Modified: trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMDebugger.java
===================================================================
--- trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMDebugger.java 2007-01-24 21:50:11 UTC (rev 1876)
+++ trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMDebugger.java 2007-01-24 23:39:11 UTC (rev 1877)
@@ -62,11 +62,8 @@
subMonitor.subTask(LaunchingMessages.StandardVMDebugger_Constructing_command_line____3);
RubyDebugTarget debugTarget = new RubyDebugTarget(launch, port);
-
String program = constructProgramString(config);
-
List<String> arguments = new ArrayList<String>(12);
-
arguments.add(program);
// VM args are the first thing after the ruby program so that users can
Modified: trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/launching/VMRunnerConfiguration.java
===================================================================
--- trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/launching/VMRunnerConfiguration.java 2007-01-24 21:50:11 UTC (rev 1876)
+++ trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/launching/VMRunnerConfiguration.java 2007-01-24 23:39:11 UTC (rev 1877)
@@ -97,13 +97,13 @@
}
/**
- * Sets the environment for the Java program. The Java VM will be
+ * Sets the environment for the Ruby program. The Ruby VM will be
* launched in the given environment.
*
- * @param environment the environment for the Java program specified as an array
+ * @param environment the environment for the Ruby program specified as an array
* of strings, each element specifying an environment variable setting in the
* format <i>name</i>=<i>value</i>
- * @since 3.0
+ * @since 0.9.0
*/
public void setEnvironment(String[] environment) {
fEnvironment= environment;
@@ -165,10 +165,10 @@
}
/**
- * Returns the environment for the Java program or <code>null</code>
+ * Returns the environment for the Ruby program or <code>null</code>
*
- * @return The Java program environment. Default is <code>null</code>
- * @since 3.0
+ * @return The Ruby program environment. Default is <code>null</code>
+ * @since 0.9.0
*/
public String[] getEnvironment() {
return fEnvironment;
@@ -181,7 +181,7 @@
* to be used by a launched VM, or <code>null</code> if
* the default working directory is to be inherited from the
* current process
- * @since 2.0
+ * @since 0.9.0
*/
public void setWorkingDirectory(String path) {
fWorkingDirectory = path;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|