On 10/12/07, Charles Oliver Nutter <[EMAIL PROTECTED]> wrote:
> Ayal Spitz wrote:
> > Hi -
> >
> > I've been using JRuby for a while and have been enjoying it. I'm
> > wondering if anyone know if there is a way to pack JRuby and some Ruby
> > code into a single launchable jar? If not, is anyone working on this?
>
> Nobody's working on it, but I really want it in. Basically, all the
> plumbing is already there to allow building a single JAR with all of
> JRuby and your Ruby application. But the final piece, a tool to bundle
> it up launch your code, is not quite there.
>
> I'd love to see a rake and/or ant task to do this.

For the maven based there is the pom.xml which builds a decent
jruby-complete jar (trunk 2 or 3 days ago). Haven't found the time to
give feedback about it.

  <repositories>
    <repository>
      <id>maven.openwfe.org.snapshots</id>
      <url>http://maven.openwfe.org/snapshots</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>

(
http://maven.openwfe.org/snapshots/org/jruby/jruby-complete/1.1-SNAPSHOT/
)

provides me

  <dependencies>
    <dependency>
      <groupId>org.jruby</groupId>
      <artifactId>jruby-complete</artifactId>
      <version>1.1-SNAPSHOT</version>
    </dependency>
  </dependencies>

It would be cool to have a jruby-complete snapshot available somewhere (else).


Best regards,

-- 
John Mettraux   -///-   http://jmettraux.openwfe.org

---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to