fastlane-plugin-unzip 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -3
- data/lib/fastlane/plugin/unzip/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3208ccfe8289a70b63de1df8bbb867381d645122
|
4
|
+
data.tar.gz: 8179cb7fc593df6b4045cc068be3705e4d5da775
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21f240f106a68ca680f61c2f1af5886341c0d84f68aaa5caa411b2cce7304c03386997cd8722fbe60d09d1ff7f5a93b0ba46d31458b7fbd71031b15cd84b01e4
|
7
|
+
data.tar.gz: 895fdbeb7a83903280260dc7a2dae8f88ae54b4ec117ff696835852f4405c0b6dd56d0a0ab571313ba700682ac310132e06afc3bb8893bca12f94ce0482e8ec9
|
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
-
# unzip plugin
|
1
|
+
# unzip plugin 🎁
|
2
2
|
|
3
3
|
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-unzip)
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/fastlane-plugin-unzip.svg)](https://badge.fury.io/rb/fastlane-plugin-unzip)
|
5
|
+
[![CircleCI](https://circleci.com/gh/maxoly/fastlane-plugin-unzip.svg?style=svg)](https://circleci.com/gh/maxoly/fastlane-plugin-unzip)
|
4
6
|
|
5
7
|
## Getting Started
|
6
8
|
|
@@ -14,13 +16,19 @@ fastlane add_plugin unzip
|
|
14
16
|
|
15
17
|
Extract compressed files in a ZIP
|
16
18
|
|
17
|
-
|
19
|
+
`unzip` will extract files from a ZIP archive. The default behavior is to extract into the current directory all files from the specified ZIP archive
|
18
20
|
|
19
21
|
## Example
|
20
22
|
|
21
23
|
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
22
24
|
|
23
|
-
|
25
|
+
```ruby
|
26
|
+
unzip(file: "archive.zip")
|
27
|
+
|
28
|
+
unzip(file: "archive.zip", destination_path: "./path/to/other/folder/")
|
29
|
+
|
30
|
+
unzip(file: "archive.zip", password: "mysecret")
|
31
|
+
```
|
24
32
|
|
25
33
|
## Run tests for this plugin
|
26
34
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-unzip
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Massimo Oliviero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-06-
|
11
|
+
date: 2016-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -106,7 +106,7 @@ files:
|
|
106
106
|
- lib/fastlane/plugin/unzip/actions/unzip_action.rb
|
107
107
|
- lib/fastlane/plugin/unzip/helper/unzip_helper.rb
|
108
108
|
- lib/fastlane/plugin/unzip/version.rb
|
109
|
-
homepage:
|
109
|
+
homepage: https://github.com/maxoly/fastlane-plugin-unzip
|
110
110
|
licenses:
|
111
111
|
- MIT
|
112
112
|
metadata: {}
|