caches 0.0.1 → 0.0.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.
- checksums.yaml +4 -4
- data/caches.gemspec +2 -2
- data/lib/caches/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a1b49f6dedacf8fe673dd362a21bea4b7c58e70
|
|
4
|
+
data.tar.gz: 3d4610b424dba43177a5578335b10d6c8aa05d3a
|
|
5
5
|
!binary "U0hBNTEy":
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b379b47737f67aa92c477341b9408ef39e5eb59fed51af6393c11a6e1f66d8901c898fab63101ee01b0055155946e9504a360c3af3d0dc71b7d8f26360d144b0
|
|
7
|
+
data.tar.gz: 1efbb38364ee01c8fef3b5380c3ae34b1afad063575f673efab18bea28e1ec1f08a226b0fd14089efed1b75e656d2628d60cdffdf5d561f724ce319062d25451
|
data/caches.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Caches::VERSION
|
|
9
9
|
spec.authors = ["Nathan Long"]
|
|
10
10
|
spec.email = ["nathanmlong@gmail.com"]
|
|
11
|
-
spec.description = %q{A small collection of
|
|
12
|
-
spec.summary = %q{
|
|
11
|
+
spec.description = %q{A small collection of caches with good performance and hash-like access patterns}
|
|
12
|
+
spec.summary = %q{Caches with hash-like access}
|
|
13
13
|
spec.homepage = "https://github.com/nathanl/caches"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
data/lib/caches/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: caches
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan Long
|
|
@@ -52,7 +52,8 @@ dependencies:
|
|
|
52
52
|
- - ~>
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '2.14'
|
|
55
|
-
description: A small collection of
|
|
55
|
+
description: A small collection of caches with good performance and hash-like access
|
|
56
|
+
patterns
|
|
56
57
|
email:
|
|
57
58
|
- nathanmlong@gmail.com
|
|
58
59
|
executables: []
|
|
@@ -101,7 +102,7 @@ rubyforge_project:
|
|
|
101
102
|
rubygems_version: 2.0.14
|
|
102
103
|
signing_key:
|
|
103
104
|
specification_version: 4
|
|
104
|
-
summary:
|
|
105
|
+
summary: Caches with hash-like access
|
|
105
106
|
test_files:
|
|
106
107
|
- spec/fetch_examples.rb
|
|
107
108
|
- spec/hash_cache/linked_list_spec.rb
|