neo4j-ruby-driver 4.4.0.alpha.3 → 4.4.0.alpha.4
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dceecd30fd6fa4473c3ec6bb640b6126bd7bb06eb5057d58e46064d8c434a929
|
4
|
+
data.tar.gz: 0e1a77da3ca678a1b4a201fa0d0211a771a009a77bb81b1a0c98e331b22c5471
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fdd3c4bbdd314fb7036ce6c7fedba8a49e26b194450dea535a7aa05f380d58a6ab04ea7edbba6cf664514c1585084ad0e17c40fb719a9794f127ee3623c169db
|
7
|
+
data.tar.gz: 673a7aa8a4f3192f7b9b15b91efaca7c05dfcb79779b39ed4f014989db06672f7c293fd3948e16fc515177cae84e428f5885b3f1d3b4c081f05e580afbd66b5d
|
@@ -10,14 +10,12 @@ module Neo4j::Driver
|
|
10
10
|
@values = values.to_set
|
11
11
|
end
|
12
12
|
|
13
|
-
def eql?(other)
|
14
|
-
values.eql?(other.values)
|
15
|
-
end
|
16
|
-
|
17
13
|
def ==(other)
|
18
|
-
values == other.values
|
14
|
+
equal?(other) || self.class == other.class && values == other.values
|
19
15
|
end
|
20
16
|
|
17
|
+
alias eql? ==
|
18
|
+
|
21
19
|
def to_s
|
22
20
|
"Bookmark{values=#{values}}"
|
23
21
|
end
|
@@ -10,13 +10,11 @@ module Neo4j::Driver
|
|
10
10
|
@properties = properties
|
11
11
|
end
|
12
12
|
|
13
|
-
def eql?(other)
|
14
|
-
id.eql?(other.id)
|
15
|
-
end
|
16
|
-
|
17
13
|
def ==(other)
|
18
|
-
id == other.id
|
14
|
+
equal?(other) || self.class == other.class && id == other.id
|
19
15
|
end
|
16
|
+
|
17
|
+
alias eql? ==
|
20
18
|
end
|
21
19
|
end
|
22
20
|
end
|