README.md in jarbler-0.2.0 vs README.md in jarbler-0.2.1
- old
+ new
@@ -51,18 +51,19 @@
$ jarble config
The default configuration is focused on Ruby on Rails applications.<br>
### Configuration options
-| Option | Default value | Description |
-|-------------------|--------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
-| compile_ruby_files| false | Ahead of time compilation of all .rb files of application and Gem dependencies to .class files. Only store .class files in jar. Requires JRuby runtime. |
-| executable | "bin/rails" | The ruby start file to run at execution of jar file. File extension .class is used automatically if start file is .rb and AOT compilation is used. |
-| executable_params | ["server", "-e", "production", "-p", "8080"] | Command line parameters to be used for the ruby executable |
-| excludes | ["tmp/cache", "tmp/pids", ...] (see generated template file for whole content) | The files and dirs of the project to exlude from the include option |
-| includes | ["app", "bin", "config", ...] (see generated template file for whole content) | The files and dirs of the project to include in the jar file |
-| jar_name | < Name of project dir >.jar | The name of the generated jar file |
-| jruby_version | The current most recent JRuby version | The version of the JRuby runtime to use |
+| Option | Default value | Description |
+|-------------------------|--------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|
+| compile_ruby_files | false | Ahead of time compilation of all .rb files of application and Gem dependencies to .class files. Only store .class files in jar. Requires JRuby runtime. |
+| executable | "bin/rails" | The ruby start file to run at execution of jar file. File extension .class is used automatically if start file is .rb and AOT compilation is used. |
+| executable_params | ["server", "-e", "production", "-p", "8080"] | Command line parameters to be used for the ruby executable |
+| excludes | ["tmp/cache", "tmp/pids", ...] (see generated template file for whole content) | The files and dirs of the project to exlude from the include option |
+| include_gems_to_compile | false | Should .rb files of the project gems also be compiled if compile_ruby_files = true |
+| includes | ["app", "bin", "config", ...] (see generated template file for whole content) | The files and dirs of the project to include in the jar file |
+| jar_name | < Name of project dir >.jar | The name of the generated jar file |
+| jruby_version | The current most recent JRuby version | The version of the JRuby runtime to use |
## Troubleshooting
* Set DEBUG=true in environment to get additional runtime information
* The temporary folder with the extracted app and JRuby runtime files is not deleted after execution if DEBUG is set.