# Unzip decoder plugin for Embulk TODO: Write short description here and build.gradle file. ## Overview * **Plugin type**: decoder * **Guess supported**: no ## Configuration - **option1**: description (integer, required) - **option2**: description (string, default: `"myvalue"`) - **option3**: description (string, default: `null`) ## Example ```yaml in: type: any output input plugin type decoders: - type: unzip option1: example1 option2: example2 ``` (If guess supported) you don't have to write `decoder:` section in the configuration file. After writing `in:` section, you can let embulk guess `decoder:` section using this command: ``` $ embulk gem install embulk-decoder-unzip $ embulk guess -g unzip config.yml -o guessed.yml ``` ## Build ``` $ ./gradlew gem # -t to watch change of files and rebuild continuously ```