zip_tricks 5.1.1 → 5.2.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
  SHA256:
3
- metadata.gz: 311852db3fa83e4f6631fb8ecf563255c0f16a65bf2b3c2f2375f41040eb3661
4
- data.tar.gz: e7b307a3b5eb5ed344d20c85d8d5cef40e89e9afbe61ce5dded2f3971b60002a
3
+ metadata.gz: b686d9ddb071cdb677559d12879dfa88a77ac63ce6eabad99ce2d8e674c80c28
4
+ data.tar.gz: fc8d6382de69962cf2cb7585b9a7476e7694abaca77cf969f2cf9b905076d59c
5
5
  SHA512:
6
- metadata.gz: 031da6b3ab1199c8967f7cfbf0116beb9025346b10ae3679391f08c6c3205672842b1f38309efeb710af758c0c28a9c2ed0b5ce784936f3c3bfdb79b3920a3a2
7
- data.tar.gz: 5e412daec62f191e4e54cfe8ff60127784264b0c851454db58b95b646af379a219d271e9d6d94aa00beb0d91b986960da07266940cc58764abb2e3e8892372b6
6
+ metadata.gz: 2949e24de0a8bc731ed0ae4d5fc30534e97ad1102f11c07a353ab211c2948bc1957c35527b4cb00eeb5751713d17a7653adbf65ea188b4fa9d0b0f0567926afe
7
+ data.tar.gz: 54972bf28272c68ce9bcada1f872840de04f7ae9a9e0276abeceb828373639f3ae9a999e788401937454d0354d86b87e462d4b60554e2478e7d8a7e6ac9c1348
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 5.2
2
+
3
+ * Remove `Streamer#add_compressed_entry` and `SizeEstimator#add_compressed_entry`
4
+
1
5
  ## 5.1.1
2
6
 
3
7
  * Fix extended timestamp extra field output. The first bit of the flag would be set instead of the last bit of
@@ -73,9 +73,6 @@ class ZipTricks::SizeEstimator
73
73
  self
74
74
  end
75
75
 
76
- # Will be phased out in ZipTricks 5.x
77
- alias_method :add_compressed_entry, :add_deflated_entry
78
-
79
76
  # Add an empty directory to the archive.
80
77
  #
81
78
  # @param dirname [String] the name of the directory
@@ -213,9 +213,6 @@ class ZipTricks::Streamer
213
213
  @out.tell
214
214
  end
215
215
 
216
- # Will be phased out in ZipTricks 5.x
217
- alias_method :add_compressed_entry, :add_deflated_entry
218
-
219
216
  # Writes out the local header for an entry (file in the ZIP) that is using
220
217
  # the stored storage model (is stored as-is).
221
218
  # Once this method is called, the `<<` method has to be called one or more
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ZipTricks
4
- VERSION = '5.1.1'
4
+ VERSION = '5.2.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zip_tricks
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.1
4
+ version: 5.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julik Tarkhanov
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2020-05-07 00:00:00.000000000 Z
14
+ date: 2020-05-19 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler