archive-zip 0.9.0 → 0.10.0

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: 9138f623736687f7bffedd8be706a604ef986143
4
- data.tar.gz: 6098fe76a711d2a74aa6a69918eb507fd6de5654
3
+ metadata.gz: 37835431a324ea88b01ba4d16a64f2df64a4aeb6
4
+ data.tar.gz: 187ef844ef93e83801a1713cceb1eb4ea19419b1
5
5
  SHA512:
6
- metadata.gz: 319cd9c5e8882d05032abb80e8f6cd6cab9459226eb95be0458caaf950239d1d2d03495d3338af12f1c950fd68fd7e76d33f74af322de520ad64a066b03831f0
7
- data.tar.gz: 6763e8e864211d2277d8bcd6a3cec53a2c51a7a4b84f004c4d5a9b4f740cafc714b145537a7fe8faa0f73b90ac398962fbcf390ef30a51f126444ea3a47145d8
6
+ metadata.gz: 45100768118c9fe2324693be9e26740f26feb7ffff033964d2d1c58340d60b6ed3af51ce4aec48230113c90001bccb112bb7dbc200b1c0b5a3e5b8d7e8984f23
7
+ data.tar.gz: f6527294cf4dc36d57ade68a2289ccf86880de9d5bde309946ec377768e0ec69ad569deb7de68e437cf9ccc265e7c5cfe7a6a7ba7874f4289907b31d3026702e
data/NEWS.md CHANGED
@@ -6,6 +6,12 @@ detailed information is available in the rest of the documentation.
6
6
  **NOTE:** Date stamps in the following entries are in YYYY/MM/DD format.
7
7
 
8
8
 
9
+ ## v0.10.0 (2017/09/04)
10
+
11
+ ### Fixes
12
+
13
+ * Avoid Ruby warnings for uninitialized attributes. (Tatsuya Sato)
14
+
9
15
  ## v0.9.0 (2016/12/18)
10
16
 
11
17
  ### Fixes
data/README.md CHANGED
@@ -182,6 +182,7 @@ Thanks to all contributors. Without your help this project would not exist.
182
182
 
183
183
  * Jeremy Bopp :: jeremy@bopp.net
184
184
  * Akira Matsuda :: ronnie@dio.jp
185
+ * Tatsuya Sato :: tatsuya.b.sato@rakuten.com
185
186
 
186
187
  ## CONTRIBUTING
187
188
 
@@ -151,6 +151,7 @@ module Archive # :nodoc:
151
151
  @entries = []
152
152
  @comment = ''
153
153
  @closed = false
154
+ @parse_complete = false
154
155
  end
155
156
 
156
157
  # A comment string for the ZIP archive.
@@ -481,8 +481,8 @@ module Archive; class Zip
481
481
  self.expected_data_descriptor = nil
482
482
  self.compression_codec = Zip::Codec::Store.new
483
483
  self.encryption_codec = Zip::Codec::NullEncryption.new
484
- self.password = nil
485
484
  @raw_data = raw_data
485
+ self.password = nil
486
486
  @extra_fields = []
487
487
  end
488
488
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Archive; class Zip
4
4
  # The current version of this gem.
5
- VERSION = '0.9.0'
5
+ VERSION = '0.10.0'
6
6
  end; end
metadata CHANGED
@@ -1,15 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: archive-zip
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Bopp
8
8
  - Akira Matsuda
9
+ - Tatsuya Sato
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
- date: 2016-12-18 00:00:00.000000000 Z
13
+ date: 2017-09-04 00:00:00.000000000 Z
13
14
  dependencies:
14
15
  - !ruby/object:Gem::Dependency
15
16
  name: io-like
@@ -117,6 +118,7 @@ description: |
117
118
  email:
118
119
  - jeremy@bopp.net
119
120
  - ronnie@dio.jp
121
+ - tatsuya.b.sato@rakuten.com
120
122
  executables: []
121
123
  extensions: []
122
124
  extra_rdoc_files: []
@@ -269,7 +271,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
269
271
  version: '0'
270
272
  requirements: []
271
273
  rubyforge_project: archive-zip
272
- rubygems_version: 2.4.5.1
274
+ rubygems_version: 2.6.11
273
275
  signing_key:
274
276
  specification_version: 4
275
277
  summary: Simple, extensible, pure Ruby ZIP archive support.