|
From: <caw...@us...> - 2007-05-29 13:12:53
|
Revision: 2542
http://svn.sourceforge.net/rubyeclipse/?rev=2542&view=rev
Author: cawilliams
Date: 2007-05-29 06:12:52 -0700 (Tue, 29 May 2007)
Log Message:
-----------
include asm jars so we can actually invoke JRuby on some ruby code and get a result in java
Modified Paths:
--------------
trunk/org.jruby/.classpath
trunk/org.jruby/META-INF/MANIFEST.MF
trunk/org.jruby/build.properties
Added Paths:
-----------
trunk/org.jruby/lib/asm-2.2.3.jar
trunk/org.jruby/lib/asm-commons-2.2.3.jar
Modified: trunk/org.jruby/.classpath
===================================================================
--- trunk/org.jruby/.classpath 2007-05-29 13:11:51 UTC (rev 2541)
+++ trunk/org.jruby/.classpath 2007-05-29 13:12:52 UTC (rev 2542)
@@ -1,7 +1,9 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry exported="true" kind="lib" path="lib/jruby.jar" sourcepath="src.zip"/>
- <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>
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <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"/>
+ <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>
Modified: trunk/org.jruby/META-INF/MANIFEST.MF
===================================================================
--- trunk/org.jruby/META-INF/MANIFEST.MF 2007-05-29 13:11:51 UTC (rev 2541)
+++ trunk/org.jruby/META-INF/MANIFEST.MF 2007-05-29 13:12:52 UTC (rev 2542)
@@ -6,7 +6,9 @@
Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime
Eclipse-LazyStart: false
-Bundle-ClassPath: lib/jruby.jar
+Bundle-ClassPath: lib/asm-commons-2.2.3.jar,
+ lib/asm-2.2.3.jar,
+ lib/jruby.jar
Export-Package: org.ablaf.ast,
org.ablaf.internal.ast,
org.jruby,
Modified: trunk/org.jruby/build.properties
===================================================================
--- trunk/org.jruby/build.properties 2007-05-29 13:11:51 UTC (rev 2541)
+++ trunk/org.jruby/build.properties 2007-05-29 13:12:52 UTC (rev 2542)
@@ -1,3 +1,5 @@
output.. = bin/
bin.includes = META-INF/,\
- lib/jruby.jar
+ lib/jruby.jar,\
+ lib/asm-commons-2.2.3.jar,\
+ lib/asm-2.2.3.jar
Added: trunk/org.jruby/lib/asm-2.2.3.jar
===================================================================
(Binary files differ)
Property changes on: trunk/org.jruby/lib/asm-2.2.3.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/org.jruby/lib/asm-commons-2.2.3.jar
===================================================================
(Binary files differ)
Property changes on: trunk/org.jruby/lib/asm-commons-2.2.3.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|