README.md in jarbler-0.2.1 vs README.md in jarbler-0.2.2
- old
+ new
@@ -56,10 +56,11 @@
| 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 |
+| 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 | < 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 |