zipbundler 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -2
  3. data/lib/zipper/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 07ff986041a1dc0f5fed2f0c59858004d6db4d8b
4
- data.tar.gz: fe5ad44cf0310e7ae46556b9e8dc14af4775f6c2
3
+ metadata.gz: ede512986a134d153bbf0524ac7f68fdaff4d403
4
+ data.tar.gz: 6e0b5cc8a72bbec6cdf1062d5be26b4124bd4131
5
5
  SHA512:
6
- metadata.gz: 75619a877e38642bfa40f17b01d93a1220e164e56bd76316548c052602fceb154d4ee2923d03606ffaa39574ecd87e0f75c69b32798b92e1e72093d5b27af40c
7
- data.tar.gz: a2c261fd7d7813446598853ac83fe9ee1b9c958f1284aa445026fd2ab096ffb30f718390135000ff27cb411e5366979f6e1754feef41f285b56803d72a275544
6
+ metadata.gz: 8e640e94fe0494b0961b59207ce73d480ba92e35fa50cbe56edce9d74502a23ded3f304b9c9fe7667d18aca0e6292a2d3b1fb872afa07ee5195fc84381aa34ef
7
+ data.tar.gz: b1e00f0953c93821152387e3e220fa7fc74225bcb6ab6a3e2872f67a9db066ce99b68db2dc240a3433e0126dcc0b75e6dbf0e5a34853884083edf58efa1c19fc
data/README.md CHANGED
@@ -7,7 +7,7 @@ Utility intended to simplify zip packages creating.
7
7
  Add this line to your application's Gemfile:
8
8
 
9
9
  ```ruby
10
- gem 'zipper'
10
+ gem 'zipbundler'
11
11
  ```
12
12
 
13
13
  And then execute:
@@ -16,7 +16,7 @@ And then execute:
16
16
 
17
17
  Or install it yourself as:
18
18
 
19
- $ gem install zipper
19
+ $ gem install zipbundler
20
20
 
21
21
  ## Usage
22
22
 
@@ -55,6 +55,10 @@ Please refer [this link](https://github.com/Le0Michine/zipper/config_schema.json
55
55
 
56
56
  Or you can do it from code `ZipFileGenerator`:
57
57
 
58
+ require 'zipper'
59
+
60
+ ...
61
+
58
62
  ZipFileGenerator.new(json_config).write
59
63
 
60
64
  `json_config` is a hash variable which should have the same structure as json config file above.
@@ -1,3 +1,3 @@
1
1
  module Zipper
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zipbundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Le0Michine