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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8318c2145e3f6b9dc0cb1d25c4a39767fa257634
4
- data.tar.gz: e964d30605c5f10e3963f820a9a14fec0e7ec801
3
+ metadata.gz: 3208ccfe8289a70b63de1df8bbb867381d645122
4
+ data.tar.gz: 8179cb7fc593df6b4045cc068be3705e4d5da775
5
5
  SHA512:
6
- metadata.gz: 282551dfad5290ef19cc7845b5fe7d36d60148f4052e77d12b053d7e7abd7f618911d1ba9cbe4cc8eb3d6e62fe86a079f5cd6f5a77d75397fc510edfff06acca
7
- data.tar.gz: c955f251cbf330ce8588970ee56360c26177c2f3026332e7d0f57a76c9c01635dcc4f6a1a45e5d9e00d7d82e32b35b06d194ba4e3b6175dd8fe94d4dddf39af6
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
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
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
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
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
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Unzip
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
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.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-28 00:00:00.000000000 Z
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: {}