inat-get 0.9.0.10 → 0.9.0.12
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/inat-get/data/dsl/conditions/and.rb +1 -1
- data/lib/inat-get/data/dsl/conditions/not.rb +3 -3
- data/lib/inat-get/info.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1728f650aec437e88f0d9ba844695b9ffd5d4e9410aa3fa72a7d2e855943b9d2
|
|
4
|
+
data.tar.gz: 22b960c8392bd3b786e4d067877bd10cf7f11594fd240697e53def459403968c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edf53795eacbf7606eec2172e5129143530c7bb5f3aee34386fb37eda9fdce7472df15d8d01579542ae7b31edaf7d9b5aa3e47f4affd4a6b8c18c22b56d09949
|
|
7
|
+
data.tar.gz: 5bba1a958b59ae606cdce9a8c1914f0c9a85c29f5f440e673387f868278df17012f48d6fea4c0e653d7bd40ef986c9cc86dfd70a8c2a0cbaf5d20f30f359bef3
|
|
@@ -102,11 +102,11 @@ class INatGet::Data::DSL::Condition::NOT < INatGet::Data::DSL::Condition
|
|
|
102
102
|
def push_not_down
|
|
103
103
|
case @operand
|
|
104
104
|
when AND
|
|
105
|
-
OR[ *@operand.operands.map { |o| NOT[ o.push_not_down ] } ]
|
|
105
|
+
OR[ *@operand.operands.map { |o| NOT[ o.send :push_not_down ] } ]
|
|
106
106
|
when OR
|
|
107
|
-
AND[ *@operand.operands.map { |o| NOT[ o.push_not_down ] } ]
|
|
107
|
+
AND[ *@operand.operands.map { |o| NOT[ o.send :push_not_down ] } ]
|
|
108
108
|
when NOT
|
|
109
|
-
@operand.operand.push_not_down
|
|
109
|
+
@operand.operand.send :push_not_down
|
|
110
110
|
else
|
|
111
111
|
self
|
|
112
112
|
end
|
data/lib/inat-get/info.rb
CHANGED