Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated to include the :zip action #144

Merged
merged 1 commit into from Dec 9, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Expand Up @@ -534,6 +534,7 @@ Most version of Windows do not ship with native cli utility for managing compres

#### Actions
- :unzip: unzip a compressed file
- :zip: zip a single folder (recursively)

#### Attribute Parameters
- path: name attribute. The path where files will be unzipped to.
Expand All @@ -560,6 +561,13 @@ windows_zipfile 'c:/the_codez' do
end
```

Zip a local zipfile
```ruby
windows_zipfile 'c:/foo/baz/the_codez.zip' do
source 'c:/the_codez'
action :zip
end
```

Exception/Report Handlers
-------------------------
Expand Down