README.md in dnnbundler-0.1.1 vs README.md in dnnbundler-0.1.2
- old
+ new
@@ -20,10 +20,34 @@
$ gem install dnnbundler
## Usage
-TODO: Write usage instructions here
+To configure packaging create a json config with the following schema:
+
+ {
+ "entries": [
+ "path_to_file"
+ "path_to_directory",
+ {
+ "type": "file",
+ "name": "test.json"
+ },
+ {
+ "type": "zip",
+ "name": "test.zip",
+ "entries": [
+ "file",
+ "dir",
+ ...
+ ]
+ }
+ ],
+ "excludeEntries": [
+ ".DS_Store"
+ ],
+ "outFileName": "out.zip"
+ }
## Development
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.