samvera-nesting_indexer 0.4.0 → 0.4.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/Rakefile +5 -2
- 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: db20ed764f7dd33ef371314bb52ed8e06500dc1f
|
|
4
|
+
data.tar.gz: 6cf90e59b6819286d325c2ec82497bf550d42b83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e348afe845977f56580ae7e7d2acd480863191b954eec16d5d9386ddb8aadedb91e21c596e2fc6aa09596f1aa29cefa8bae7a298651cb3658ea37758606e4f8
|
|
7
|
+
data.tar.gz: 86f1f58a48b2b16f27f0f1879009fd9fb705c210aa5a2090dddbd798d553f1566e05d0bb0c25f58a8a50511ebebc7b3722fffdfa27267cce72a12ba32a1b50d6
|
data/Rakefile
CHANGED
|
@@ -23,7 +23,7 @@ namespace :commitment do
|
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
task(
|
|
26
|
-
|
|
26
|
+
all_specs: [
|
|
27
27
|
'commitment:rubocop',
|
|
28
28
|
'commitment:configure_test_for_code_coverage',
|
|
29
29
|
'spec',
|
|
@@ -31,6 +31,9 @@ task(
|
|
|
31
31
|
]
|
|
32
32
|
)
|
|
33
33
|
|
|
34
|
+
task default: :all_specs
|
|
35
|
+
|
|
34
36
|
RSpec::Core::RakeTask.new(:spec)
|
|
35
37
|
|
|
36
|
-
task
|
|
38
|
+
task build: :all_specs
|
|
39
|
+
task release: :all_specs
|
|
@@ -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_prefix_for_parent_ids=(input)
|
|
23
|
+
@solr_field_name_prefix_for_parent_ids = input.to_s
|
|
24
24
|
end
|
|
25
25
|
|
|
26
|
-
def
|
|
27
|
-
@
|
|
26
|
+
def solr_field_name_prefix_for_parent_ids
|
|
27
|
+
@solr_field_name_prefix_for_parent_ids || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
def
|
|
31
|
-
@
|
|
30
|
+
def solr_field_name_prefix_for_ancestors=(input)
|
|
31
|
+
@solr_field_name_prefix_for_ancestors = input.to_s
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
def
|
|
35
|
-
@
|
|
34
|
+
def solr_field_name_prefix_for_ancestors
|
|
35
|
+
@solr_field_name_prefix_for_ancestors || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
|
|
36
36
|
end
|
|
37
37
|
|
|
38
|
-
def
|
|
39
|
-
@
|
|
38
|
+
def solr_field_name_prefix_for_pathnames=(input)
|
|
39
|
+
@solr_field_name_prefix_for_pathnames = input.to_s
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
def
|
|
43
|
-
@
|
|
42
|
+
def solr_field_name_prefix_for_pathnames
|
|
43
|
+
@solr_field_name_prefix_for_pathnames || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
# @api public
|