README.md in jarbler-0.2.3 vs README.md in jarbler-0.3.0

- old
+ new

@@ -51,20 +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_from_compile | ["config"] | The files and dirs of the project to exclude from the compilation of .rb files | -| excludes | ["tmp/cache", "tmp/pids", ...] (see generated template file for whole content) | The files and dirs of the project to exclude 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 | &lt; Name of project dir &gt;.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_from_compile | [] | The files and dirs of the project to exclude from the compilation of .rb files. Paths specifies the location in the jar file (e.g. ["app_root/file.rb"] ) | +| excludes | ["tmp/cache", "tmp/pids", ...] (see generated template file for whole content) | The files and dirs of the project to exclude 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 | &lt; Name of project dir &gt;.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.