relaton-index 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/relaton/index/file_io.rb +14 -9
- data/lib/relaton/index/version.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: 21befc44c8bd8f0d88e60fe51d5aa5be78e12b8a5857a27ce618bd561ee1aa88
|
4
|
+
data.tar.gz: c527ce0b9894779d32ccb355f435c8d22b0c7d34355bd8f65bffce58c9512859
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6984ef1228e1ac5c862c0ed68ba6a8e8c841b9c758fc37d0b32178d8c63bfee6423f169b12c2f80bdb438bbc33596559c980fb8267887aa4f7ccab6d1e87357
|
7
|
+
data.tar.gz: cda24cb6adef4dab6a51f16b78ed54d239cc76daa41e8ae76a4d2f442b0ec5d430be5da4fd0e8141f21860126f0ebce630d5e828c768b46320e7eb621885a98d
|
@@ -75,15 +75,20 @@ module Relaton
|
|
75
75
|
#
|
76
76
|
# @return [Boolean] <description>
|
77
77
|
#
|
78
|
-
def check_format(index)
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
78
|
+
def check_format(index)
|
79
|
+
cehck_basic_format(index) && check_id_format(index)
|
80
|
+
end
|
81
|
+
|
82
|
+
def cehck_basic_format(index)
|
83
|
+
keys = %i[file id]
|
84
|
+
index.none? { |item| item.keys.sort != keys }
|
85
|
+
end
|
86
|
+
|
87
|
+
def check_id_format(index)
|
88
|
+
return true if @id_keys.empty?
|
89
|
+
|
90
|
+
keys = index.reduce(Set.new) { |acc, item| acc + item[:id].keys }
|
91
|
+
keys == @id_keys.to_set
|
87
92
|
end
|
88
93
|
|
89
94
|
#
|