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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0be21dd61b9f5f3d6b6ccad2c1b1ed80716eae2d
4
- data.tar.gz: 892250b2ba5c0928c1ff2dc2f70e8ccce4e66540
3
+ metadata.gz: 75345930203b00001250fed039cf25d5fb6924a0
4
+ data.tar.gz: 976fdb5ce55d267d2d579512c58fdcec074da652
5
5
  SHA512:
6
- metadata.gz: f8bb638efe4d51cedc36e480512d7cbd7745deae8391a9eee6a08edc948c2e2894abd6669fba9015ad1e2bbebb3389d34784966fa5c7b9829f7e1bf2fc84fbf1
7
- data.tar.gz: 7880f1c9bff81f31f6fe1d503cb1786c533e6cb1be06878de92a9930695f5d2d77bc8dcc39dfdbf1d0d8b371df36b2c27096e12ea07590899075cbdf3d1e6be4
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 solr_field_name_prefix_for_parent_ids=(input)
23
- @solr_field_name_prefix_for_parent_ids = input.to_s
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 solr_field_name_prefix_for_parent_ids
27
- @solr_field_name_prefix_for_parent_ids || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
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 solr_field_name_prefix_for_ancestors=(input)
31
- @solr_field_name_prefix_for_ancestors = input.to_s
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 solr_field_name_prefix_for_ancestors
35
- @solr_field_name_prefix_for_ancestors || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
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 solr_field_name_prefix_for_pathnames=(input)
39
- @solr_field_name_prefix_for_pathnames = input.to_s
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 solr_field_name_prefix_for_pathnames
43
- @solr_field_name_prefix_for_pathnames || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
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
@@ -1,5 +1,5 @@
1
1
  module Samvera
2
2
  module NestingIndexer
3
- VERSION = "0.5.0".freeze
3
+ VERSION = "0.6.0".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: samvera-nesting_indexer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Friesen