I need to compile my JRuby application into a standalone JAR file. How can I do this?
|
|
Warbler 1.3.0 or newer can also be used to make an executable JAR file. Quick instructions. Make sure you're using JRuby`s gem, etc. here:
You should now have a |
||||
|
|
|
Check out http://rawr.rubyforge.org/. It is a gem that packages your application in a JAR file. If you want to compile for source code protection you must produce a
for each of the compiled scripts. |
||||
|
|
|
JRuby 1.6 improved this. There's now a section of the wiki - StandaloneJarsAndClasses - that talks about how to use jrubyc to generate .class files and standalone jars. With the new compiler, you can build .class files like this example from the wiki:
james@gealach:/tmp/fnx$ cat my_foo.rb
class Foo
def bar(a, b)
puts a + b
end
end
james@gealach:/tmp/fnx$ ~/jruby/bin/jrubyc --javac my_foo.rb
Generating Java class Foo to C:/cygwin/tmp/fnx/Foo.java
javac -d C:/cygwin/tmp/fnx -cp C:/cygwin/home/james/jruby/lib/jruby.jar;. C:/cygwin/tmp/fnx/Foo.java
james@gealach:/tmp/fnx$ ls
Foo.class Foo.java my_foo.rb
james@gealach:/tmp/fnx$ javap.exe Foo
Compiled from "Foo.java"
public class Foo extends org.jruby.RubyObject{
public static org.jruby.runtime.builtin.IRubyObject __allocate__(org.jruby.Ruby, org.jruby.RubyClass);
public Foo();
public java.lang.Object bar(java.lang.Object, java.lang.Object);
static {};
}
And you can set the entrypoint for a jar to org.jruby.JarBootstrapMain and add a jar-bootstrap.rb file. |
|||
|
|
|
To just run a script: The JRuby site has a runnable JAR file that you can get at the JRuby download page. You want the JRuby complete JAR file. You can then run your application by doing
I believe you can also build the same JAR file from source. In the downloaded source do
To embed a Ruby script completely into a JAR file: Embedding JRuby in Java is a good starting point. You will probably want to unjar the |
||||
|
|