warbler
warbler copied to clipboard
Warbler chirpily constructs .war files of your Ruby applications.
How do I call bundle exec within a runnable .war file? Our application here uses some local Git repos, so the data migration tool I've just written needs to be...
Tried deploying with Bundler 1.16.3 and it did not seem to resolve the issues with https://github.com/jruby/warbler/issues/432 Submitting the fix again (with proper method call this time)
The jetty-runner class was deprecated in https://github.com/eclipse/jetty.project/issues/1905 It looks like most promising replacement is to use the jetty-home artifact, with a start.ini file. But that still leaves a lot of...
I get the following error when compiling a few gems: ``` Unhandled Java exception: java.nio.BufferOverflowException java.nio.BufferOverflowException: null put at java/nio/HeapByteBuffer.java:189 put at java/nio/ByteBuffer.java:859 invoke at java/lang/reflect/Method.java:498 invokeDirectWithExceptionHandling at org/jruby/javasupport/JavaMethod.java:470 invokeStaticDirect...
It seems as if Bundler 1.16.0 might have broken Warbler? I get "Unable to detect bundler spec under '/usr/share/tomcat/.rvm/gems/jruby-9.1.8.0/gems/bundler-1.16.0'' and its sub-dirs". This is a new problem, and if I...
When attempting to execute the compiled jar file when warbler packs in jruby-jars-9.1.9.0: ``` LoadError: no such file to load -- bundler/shared_helpers require at org/jruby/RubyKernel.java:961 require at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:130 at uri:classloader:/META-INF/init.rb:21...
In this case, I'm using the h2 database. When I use jbundler directly, it appears to work, but after a run through bundler, it finds the h2 engine, but not...
We have a Rake task that runs `assets:precompile` before the `war` task, which results in the precompiled assets being copied to the root of the war file. To speed up...