warbler
warbler copied to clipboard
Warbler chirpily constructs .war files of your Ruby applications.
I created a simple test Rails app with sqlite db and used warbler to create a compiled executable war file. I used `java -server -jar app.war -S puma -p 3000...
jar-dependencies comes bundled with jruby and superseed jbundler. jbundler and jar-dependencies are using the same Jarfile but their lock file is different. jar-dependencies uses Jars.lock With Jars.lock present and assuming...
I have a CLI gem called `myapp` that uses a C shared library (`some_lib.so`) which is interfaced with ruby code using `ffi` gem. The library is loaded in a Ruby...
I'm trying to package a minimal [libGDX](https://libgdx.com/) game written in JRuby with Warbler. The game works when run from the command-line, but when I run the jar built by Warbler,...
Bundling and generating war files via `bundle exec warble runnable war` run fine, but when trying to run a war file generated by warbler via `java -jar cdc.war -S rake...
When running the `jar` file using `java -jar my_app_name.jar`, the `$PROGRAM_NAME` is set to `` instead of the main file name. I opened a ticket in Thor with more details...
WIP exploded war support
Hi! It looks like we need to use JRuby command line to package with Warbler even if the actual JRuby to be packaged comes from the jruby-jars gem. It would...
Warbler appears to not be playing nicely with the http-parser gem. I followed the following steps on jruby 9.2.11.1 to create a WAR file of a basic rails app with...
I've been using warbler to build a gem where one of the dependencies are :path => to a local gem ``` gem "some-gem", :path => "./gems/some-gem" ``` I've noticed that...