gorge 1.0.0 → 1.0.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 571d1f13502e6d024792ccccfc30a1435853cffe
4
- data.tar.gz: f99170a717884e083852bf6ff05d862013ca8415
2
+ SHA256:
3
+ metadata.gz: bacd79395803929f913481d7ba727d9232994df9f62895c3f1ea76e7b5113440
4
+ data.tar.gz: 073fadb223be0b871619aa30480ef6c00325fd4bc1a76a58d42a757ce33a8590
5
5
  SHA512:
6
- metadata.gz: ca907bd8db031a9f3f89f2ceb1e644faaace6403694022034461ee3c9bd8c20c19d993a2e69e6e1e9f00bead1703f86144979710b590164450b5a11211329495
7
- data.tar.gz: 321cc40244782e13794c8bc55ba3e42be4f776ea2f9867a303897fe207db676959aaf7837285f9a0e47b93d60660b91b08ddb9481e69269bc7d4ca48f626736d
6
+ metadata.gz: d46a90e7a9e5215537d9617057a19ef2835c2ee3e8e58617547979caec1a0ace979af8d70146d5ae0c5f6cb0b49e50081c84a63bcfd8c93dcd001d7bd5bb33e6
7
+ data.tar.gz: 89c2ebc325fe7ef7faa5749c7df5860c91e19e70fb065eed8b9dc23282e8b1965e7f4231b0ca2512523254099768b7fed5ba7063fa8bdc10d7a16fc702e2e4b4
@@ -0,0 +1,8 @@
1
+ ## 1.0.1
2
+
3
+ * Fix CRC32 for larger binary files
4
+
5
+
6
+ ## 1.0.0
7
+
8
+ * Initial release
@@ -31,7 +31,7 @@ class Digest::CRC32 < Digest::Class
31
31
  #
32
32
  # @return [self]
33
33
  def update(string)
34
- @crc32 = Zlib.crc32_combine(@crc32, Zlib.crc32(string), string.length)
34
+ @crc32 = Zlib.crc32(string, @crc32)
35
35
  self
36
36
  end
37
37
 
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module Gorge
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gorge
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
  - Jonathan Hefner
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-16 00:00:00.000000000 Z
11
+ date: 2019-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -75,6 +75,7 @@ extra_rdoc_files: []
75
75
  files:
76
76
  - ".gitignore"
77
77
  - ".travis.yml"
78
+ - CHANGELOG.md
78
79
  - Gemfile
79
80
  - LICENSE.txt
80
81
  - README.md
@@ -106,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
107
  version: '0'
107
108
  requirements: []
108
109
  rubyforge_project:
109
- rubygems_version: 2.4.8
110
+ rubygems_version: 2.7.6
110
111
  signing_key:
111
112
  specification_version: 4
112
113
  summary: Convenient access to Ruby's Digest module