You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey folks,
sorry for the fact that this isn't an 'issue' and more just a question.
I am packaging my app with warbler to create a Java Jar file.
As far as I know, this bundles up JRuby with all my gem dependencies and then runs my script. Is there a way to specify command line arguments for this?
For example, I'd like to use the --dev argument for improved startup times.
Can I somehow define this inside of the jar manifest file?
The text was updated successfully, but these errors were encountered:
This is what I have always considered a weird oversight in executable jar format in Java. You basically need to load java and the re-load it again (tiny Java programs startup much faster than JRuby itself so this may not be a big hit). I think there are some other programs which were made for this too (Capsule?):
Hey folks,
sorry for the fact that this isn't an 'issue' and more just a question.
I am packaging my app with warbler to create a Java Jar file.
As far as I know, this bundles up JRuby with all my gem dependencies and then runs my script. Is there a way to specify command line arguments for this?
For example, I'd like to use the --dev argument for improved startup times.
Can I somehow define this inside of the jar manifest file?
The text was updated successfully, but these errors were encountered: