samvera-nesting_indexer 0.5.0 → 0.6.0
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/samvera/nesting_indexer/configuration.rb +12 -12
- data/lib/samvera/nesting_indexer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 75345930203b00001250fed039cf25d5fb6924a0
|
|
4
|
+
data.tar.gz: 976fdb5ce55d267d2d579512c58fdcec074da652
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a39a7a17bf963fa3b0e0f63779bbad6591331b1ad1da88b8f66e471b7bf7e821e57a82b21cf86ee76b50d192fd0fbf4727e41cadfcb1946cdeb81d32bcfb826
|
|
7
|
+
data.tar.gz: b15f80f10ece6a9cb33bf3ee6349fb00548ee2ba721dafbb75ed37393ac0db700ced920f2acd850aae60683b5eafe19202d647ce8935cc7225db865689287334
|
|
@@ -19,28 +19,28 @@ module Samvera
|
|
|
19
19
|
@maximum_nesting_depth = input.to_i
|
|
20
20
|
end
|
|
21
21
|
|
|
22
|
-
def
|
|
23
|
-
@
|
|
22
|
+
def solr_field_name_for_storing_parent_ids=(input)
|
|
23
|
+
@solr_field_name_for_storing_parent_ids = input.to_s
|
|
24
24
|
end
|
|
25
25
|
|
|
26
|
-
def
|
|
27
|
-
@
|
|
26
|
+
def solr_field_name_for_storing_parent_ids
|
|
27
|
+
@solr_field_name_for_storing_parent_ids || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
def
|
|
31
|
-
@
|
|
30
|
+
def solr_field_name_for_storing_ancestors=(input)
|
|
31
|
+
@solr_field_name_for_storing_ancestors = input.to_s
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
def
|
|
35
|
-
@
|
|
34
|
+
def solr_field_name_for_storing_ancestors
|
|
35
|
+
@solr_field_name_for_storing_ancestors || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
|
|
36
36
|
end
|
|
37
37
|
|
|
38
|
-
def
|
|
39
|
-
@
|
|
38
|
+
def solr_field_name_for_storing_pathnames=(input)
|
|
39
|
+
@solr_field_name_for_storing_pathnames = input.to_s
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
def
|
|
43
|
-
@
|
|
42
|
+
def solr_field_name_for_storing_pathnames
|
|
43
|
+
@solr_field_name_for_storing_pathnames || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
# @api public
|