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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 44146a263d2c1393f018e7872cbe48547ea39b5c
4
- data.tar.gz: f5a05c985357effa6b65bea5a203273c20042d80
3
+ metadata.gz: db20ed764f7dd33ef371314bb52ed8e06500dc1f
4
+ data.tar.gz: 6cf90e59b6819286d325c2ec82497bf550d42b83
5
5
  SHA512:
6
- metadata.gz: b56e99e99f68d103fc845f12803e45b69d4631908ff66db498c08d4b16b5232f714dac731018fa9c786b169cbc35383ba4657a54194ae26559e0548992ac89ae
7
- data.tar.gz: 8f0ed5cfd36249fd513f4d3594548a4225375a76302b1444a404a4be62f9f5dd73b1402067c9332736a0569ebd85f970ddac5e5a828ccd16fcbb1069bd7305e7
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
- default: [
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 default: :spec
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 solr_key_suffix_for_parent_ids=(input)
23
- @solr_key_suffix_for_parent_ids = input.to_s
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 solr_key_suffix_for_parent_ids
27
- @solr_key_suffix_for_parent_ids || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
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 solr_key_suffix_for_ancestors=(input)
31
- @solr_key_suffix_for_ancestors = input.to_s
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 solr_key_suffix_for_ancestors
35
- @solr_key_suffix_for_ancestors || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
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 solr_key_suffix_for_pathnames=(input)
39
- @solr_key_suffix_for_pathnames = input.to_s
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 solr_key_suffix_for_pathnames
43
- @solr_key_suffix_for_pathnames || raise(Exceptions::SolrKeyConfigurationError.new(name: __method__, config: self))
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
@@ -1,5 +1,5 @@
1
1
  module Samvera
2
2
  module NestingIndexer
3
- VERSION = "0.4.0".freeze
3
+ VERSION = "0.4.1".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.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Friesen