|
From: <caw...@us...> - 2007-07-25 18:08:34
|
Revision: 2867
http://rubyeclipse.svn.sourceforge.net/rubyeclipse/?rev=2867&view=rev
Author: cawilliams
Date: 2007-07-25 11:08:33 -0700 (Wed, 25 Jul 2007)
Log Message:
-----------
add GEM_LIB as a reserved variable name
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/META-INF/MANIFEST.MF
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/wizards/buildpaths/VariableBlock.java
Modified: trunk/org.rubypeople.rdt.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/org.rubypeople.rdt.ui/META-INF/MANIFEST.MF 2007-07-25 18:03:07 UTC (rev 2866)
+++ trunk/org.rubypeople.rdt.ui/META-INF/MANIFEST.MF 2007-07-25 18:08:33 UTC (rev 2867)
@@ -60,6 +60,7 @@
org.eclipse.core.filesystem,
org.eclipse.core.expressions,
org.eclipse.ltk.core.refactoring,
- com.ibm.icu
+ com.ibm.icu,
+ com.aptana.rdt
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/wizards/buildpaths/VariableBlock.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/wizards/buildpaths/VariableBlock.java 2007-07-25 18:03:07 UTC (rev 2866)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/wizards/buildpaths/VariableBlock.java 2007-07-25 18:08:33 UTC (rev 2867)
@@ -54,7 +54,9 @@
import org.rubypeople.rdt.internal.ui.wizards.dialogfields.ListDialogField;
import org.rubypeople.rdt.launching.RubyRuntime;
+import com.aptana.rdt.launching.IGemRuntime;
+
public class VariableBlock {
private ListDialogField fVariablesList;
@@ -114,7 +116,7 @@
private String[] getReservedVariableNames() {
return new String[] {
- RubyRuntime.RUBYLIB_VARIABLE
+ RubyRuntime.RUBYLIB_VARIABLE, IGemRuntime.GEMLIB_VARIABLE
};
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|