consistent_hash 0.0.2 → 0.0.3
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 +4 -4
- data/Rakefile +3 -1
- data/consistent_hash.gemspec +3 -0
- data/lib/consistent_hash/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ed83ae215ab76369cd031d3f7ea19ec89aeffb0
|
|
4
|
+
data.tar.gz: 76a2c86656f17386e8f878e4f7bfed7b7450bb99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2239cb4ea0f8f220e389b2409464568144b629c809bb673bd551abd6c4c447ae1dd0951a54f78ea4c24b66247e1ab4eedc0c7d33fb9dde048688844696e9c62f
|
|
7
|
+
data.tar.gz: cd8cc4770fc85a63851a46cb0e82efcfec9063cb2f66a3e06a634dac20e8cda19d6a37c734689c59a27e7fd5275348fcc05babbb44615ed59c50c2970c422f0e
|
data/Rakefile
CHANGED
data/consistent_hash.gemspec
CHANGED
|
@@ -14,10 +14,13 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
|
17
|
+
spec.extensions = ['ext/consistent_hash/extconf.rb']
|
|
17
18
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
19
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
20
|
spec.require_paths = ["lib"]
|
|
20
21
|
|
|
22
|
+
spec.platform = Gem::Platform::RUBY
|
|
23
|
+
|
|
21
24
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
22
25
|
spec.add_development_dependency "rake"
|
|
23
26
|
spec.add_development_dependency "rspec", "~> 2.14"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: consistent_hash
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ulysse Carion
|
|
@@ -70,7 +70,8 @@ description: A string hash function that returns the same value each time it's c
|
|
|
70
70
|
email:
|
|
71
71
|
- ulyssecarion@gmail.com
|
|
72
72
|
executables: []
|
|
73
|
-
extensions:
|
|
73
|
+
extensions:
|
|
74
|
+
- ext/consistent_hash/extconf.rb
|
|
74
75
|
extra_rdoc_files: []
|
|
75
76
|
files:
|
|
76
77
|
- .gitignore
|