nest 3.1.0 → 3.1.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 +4 -4
- data/lib/nest.rb +8 -0
- data/nest.gemspec +1 -1
- data/test/nest_test.rb +10 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c4c4aeff5206eb5114db89a069fbc03d2be990f
|
4
|
+
data.tar.gz: 17d53051af21384b2e806057a632ff3a0aea9e0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f15b661917706692398bf84b70827ed514a328a9c62e578ff15d4837f3d8216058ae224292452f216d4be1f40a37df94b28874c28cbb8a6db0fa6b72593398d
|
7
|
+
data.tar.gz: ace8ba7d6cc84c30b4424b16e46eced592b6a7e436925d75555ed83ca40edd1566b14f73fba421782427aa8fe6e77a8bce5c17ccb321639f1377a26ea38488a2
|
data/lib/nest.rb
CHANGED
data/nest.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "nest"
|
3
|
-
s.version = "3.1.
|
3
|
+
s.version = "3.1.1"
|
4
4
|
s.summary = "Object-oriented keys for Redis."
|
5
5
|
s.description = "It is a design pattern in key-value databases to use the key to simulate structure, and Nest can take care of that."
|
6
6
|
s.license = "MIT"
|
data/test/nest_test.rb
CHANGED
@@ -77,3 +77,13 @@ scope do
|
|
77
77
|
assert "s1" == n1.get
|
78
78
|
end
|
79
79
|
end
|
80
|
+
|
81
|
+
# Operations that call to_a and to_ary
|
82
|
+
scope do
|
83
|
+
test "interaction with array-casting operations" do
|
84
|
+
n1 = Nest.new("foo")
|
85
|
+
|
86
|
+
assert_equal [n1], [n1].flatten
|
87
|
+
assert_equal [n1], Array(n1)
|
88
|
+
end
|
89
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michel Martens
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-04-
|
11
|
+
date: 2017-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: redic
|