|
From: <caw...@us...> - 2007-06-01 16:11:18
|
Revision: 2574
http://svn.sourceforge.net/rubyeclipse/?rev=2574&view=rev
Author: cawilliams
Date: 2007-06-01 09:11:08 -0700 (Fri, 01 Jun 2007)
Log Message:
-----------
upgrdae to latest JRuby - include another JRuby lib that it needs.
Modified Paths:
--------------
trunk/com.aptana.rdt/src/com/aptana/rdt/internal/parser/warnings/UnusedParameterVisitor.java
trunk/org.jruby/.classpath
trunk/org.jruby/META-INF/MANIFEST.MF
trunk/org.jruby/README
trunk/org.jruby/build.properties
trunk/org.jruby/src.zip
trunk/org.rubypeople.rdt.astviewer/src/org/rubypeople/rdt/astviewer/views/ViewContentProvider.java
trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/parser/InOrderVisitor.java
trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/parser/RubyParser.java
trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/ti/DefaultOccurrencesFinder.java
trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/ti/DefaultReferenceFinder.java
trunk/org.rubypeople.rdt.refactoring/src/org/rubypeople/rdt/refactoring/core/NodeFactory.java
trunk/org.rubypeople.rdt.refactoring/src/org/rubypeople/rdt/refactoring/core/NodeProvider.java
trunk/org.rubypeople.rdt.refactoring/src/org/rubypeople/rdt/refactoring/core/formatsource/EditableFormatHelper.java
trunk/org.rubypeople.rdt.refactoring/src/org/rubypeople/rdt/refactoring/core/formatsource/PreviewGeneratorImpl.java
trunk/org.rubypeople.rdt.refactoring/src/org/rubypeople/rdt/refactoring/nodewrapper/ArgsNodeWrapper.java
trunk/org.rubypeople.rdt.refactoring.tests/src/org/rubypeople/rdt/refactoring/tests/core/nodewrapper/TC_MethodNodeWrapper.java
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/RubyPartitionScanner.java
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/text/ruby/RubyTokenScanner.java
Added Paths:
-----------
trunk/org.jruby/lib/backport-util-concurrent.jar
trunk/org.jruby/lib/jruby.jar
Removed Paths:
-------------
trunk/org.jruby/lib/jruby.jar
Modified: trunk/com.aptana.rdt/src/com/aptana/rdt/internal/parser/warnings/UnusedParameterVisitor.java
===================================================================
--- trunk/com.aptana.rdt/src/com/aptana/rdt/internal/parser/warnings/UnusedParameterVisitor.java 2007-05-31 16:27:21 UTC (rev 2573)
+++ trunk/com.aptana.rdt/src/com/aptana/rdt/internal/parser/warnings/UnusedParameterVisitor.java 2007-06-01 16:11:08 UTC (rev 2574)
@@ -56,7 +56,7 @@
ArgsNode args = (ArgsNode) argsNode;
ListNode argList = args.getArgs();
if (argList == null) return arguments;
- for (Iterator iter = argList.iterator(); iter.hasNext();) {
+ for (Iterator iter = argList.childNodes().iterator(); iter.hasNext();) {
Object node = iter.next();
if (node instanceof Node) {
arguments.add((Node)node);
Modified: trunk/org.jruby/.classpath
===================================================================
--- trunk/org.jruby/.classpath 2007-05-31 16:27:21 UTC (rev 2573)
+++ trunk/org.jruby/.classpath 2007-06-01 16:11:08 UTC (rev 2574)
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
+ <classpathentry exported="true" kind="lib" path="lib/backport-util-concurrent.jar"/>
<classpathentry exported="true" kind="lib" path="lib/asm-2.2.3.jar"/>
<classpathentry exported="true" kind="lib" path="lib/asm-commons-2.2.3.jar"/>
<classpathentry exported="true" kind="lib" path="lib/jruby.jar" sourcepath="src.zip"/>
Modified: trunk/org.jruby/META-INF/MANIFEST.MF
===================================================================
--- trunk/org.jruby/META-INF/MANIFEST.MF 2007-05-31 16:27:21 UTC (rev 2573)
+++ trunk/org.jruby/META-INF/MANIFEST.MF 2007-06-01 16:11:08 UTC (rev 2574)
@@ -4,10 +4,13 @@
Bundle-SymbolicName: org.jruby
Bundle-Version: 0.9.2.3129
Bundle-Localization: plugin
-Require-Bundle: org.eclipse.core.runtime
+Require-Bundle: org.eclipse.core.runtime,
+ org.eclipse.jface,
+ org.eclipse.ui
Eclipse-LazyStart: false
Bundle-ClassPath: lib/asm-commons-2.2.3.jar,
lib/asm-2.2.3.jar,
+ lib/backport-util-concurrent.jar,
lib/jruby.jar
Export-Package: org.ablaf.ast,
org.ablaf.internal.ast,
@@ -33,7 +36,6 @@
org.jruby.parser,
org.jruby.runtime,
org.jruby.runtime.builtin,
- org.jruby.runtime.builtin.meta,
org.jruby.runtime.callback,
org.jruby.runtime.load,
org.jruby.runtime.marshal,
Modified: trunk/org.jruby/README
===================================================================
--- trunk/org.jruby/README 2007-05-31 16:27:21 UTC (rev 2573)
+++ trunk/org.jruby/README 2007-06-01 16:11:08 UTC (rev 2574)
@@ -1 +1,2 @@
-JRuby revision 3012
+JRuby revision 3788
+1.0.0RC2
\ No newline at end of file
Modified: trunk/org.jruby/build.properties
===================================================================
--- trunk/org.jruby/build.properties 2007-05-31 16:27:21 UTC (rev 2573)
+++ trunk/org.jruby/build.properties 2007-06-01 16:11:08 UTC (rev 2574)
@@ -2,4 +2,5 @@
bin.includes = META-INF/,\
lib/jruby.jar,\
lib/asm-commons-2.2.3.jar,\
- lib/asm-2.2.3.jar
+ lib/asm-2.2.3.jar,\
+ lib/backport-util-concurrent.jar
Added: trunk/org.jruby/lib/backport-util-concurrent.jar
===================================================================
(Binary files differ)
Property changes on: trunk/org.jruby/lib/backport-util-concurrent.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: trunk/org.jruby/lib/jruby.jar
===================================================================
(Binary files differ)
Added: trunk/org.jruby/lib/jruby.jar
===================================================================
--- trunk/org.jruby/lib/jruby.jar (rev 0)
+++ trunk/org.jruby/lib/jruby.jar 2007-06-01 16:11:08 UTC (rev 2574)
@@ -0,0 +1,20421 @@
+PK
+ |