|
From: David C. <dc...@us...> - 2005-10-02 23:27:44
|
Update of /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8707 Modified Files: .classpath plugin.xml Log Message: Refactored RubyBuilder into several smaller classes. Wrote UTs for a few of them. Began work on a SymbolIndex. Index: .classpath =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams/.classpath,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** .classpath 28 Mar 2004 18:45:01 -0000 1.8 --- .classpath 1 Oct 2005 23:00:50 -0000 1.9 *************** *** 2,7 **** <classpath> <classpathentry kind="src" path="src"/> - <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="bin"/> </classpath> --- 2,7 ---- <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> <classpathentry kind="output" path="bin"/> </classpath> Index: plugin.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams/plugin.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** plugin.xml 26 Mar 2005 11:35:57 -0000 1.6 --- plugin.xml 1 Oct 2005 23:00:50 -0000 1.7 *************** *** 19,22 **** --- 19,23 ---- <import plugin="org.eclipse.ui"/> <import plugin="org.eclipse.debug.core"/> + <import plugin="org.junit"/> </requires> |