change_the_subject 0.4.0 → 0.4.2

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
  SHA256:
3
- metadata.gz: f6e373737bb3c1301c451f662a9946ef5a6802350b62e5d9b3a6b77a22502677
4
- data.tar.gz: a02f0e85465c778a9c2b23a34baf994878d98bf7e591fa347c88ddbb7139bf8e
3
+ metadata.gz: 93cad4e4c4fc10fafc073f181fd64028c92643ad831f00b76bada3dbb24d4d1d
4
+ data.tar.gz: e8dc2a999190acd425a95f2408508deaed5c1e33b21e37bc276146f5aefe9657
5
5
  SHA512:
6
- metadata.gz: e9c1afd0dde80243aad3f0950ccc8b3836bec7f2388a192ce0a3ebaea6d258ac02cdc0eaf8c9b8dfda00ad8e08a72d428bb1b9fdbbdb98f1f59966599a97205a
7
- data.tar.gz: 8d6d05781d163a4c23bb556ce84b58fd5b013d3f2ef217e7524861e42751a9b91073f3a6784c29037bae07c863a14be4145ab3855cfff536f4794f127d0ea297
6
+ metadata.gz: 4e668dedab45f7025b30885d6ce4d9d2a4e0235803bad93dc5279adfed3ba3f83d46991663b4a97f69b04bb025debad812fb51122b9995309ba9e0baa5043a14
7
+ data.tar.gz: e29810fb3a61075ff3305e32569aec5ca88c026133164b6d2a95846df431df8a9d4e403d4da9d3bb3925a918768088e572dff315a183d1fafcfbf808399a4d01
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- change_the_subject (0.4.0)
4
+ change_the_subject (0.4.2)
5
5
  yaml
6
6
 
7
7
  GEM
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ChangeTheSubject
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.2"
5
5
  end
@@ -32,6 +32,8 @@ class ChangeTheSubject
32
32
  # @param [<String>] subject_terms
33
33
  # @return [<String>]
34
34
  def fix(subject_terms:)
35
+ return [] if subject_terms.nil?
36
+
35
37
  subject_terms.compact.reject(&:empty?).map do |term|
36
38
  replacement = check_for_replacement(term: term)
37
39
  subdivision_replacement = check_for_replacement_subdivision(term: replacement)
@@ -73,7 +75,8 @@ class ChangeTheSubject
73
75
  subterms.each.with_index do |sub_term, index|
74
76
  next if index.zero?
75
77
 
76
- term_config = subdivision_term_mapping[sub_term]
78
+ clean_subterm = sub_term.delete_suffix(".")
79
+ term_config = subdivision_term_mapping[clean_subterm]
77
80
  next unless term_config
78
81
 
79
82
  subterms[index] = term_config["replacement"]
@@ -105,7 +108,8 @@ class ChangeTheSubject
105
108
  def term_matches_subterms?(term, subterms)
106
109
  term_as_array = Array(term)
107
110
  term_as_array.count.times.all? do |index|
108
- term_as_array[index] == subterms[index]
111
+ clean_subterm = subterms[index].delete_suffix(".")
112
+ term_as_array[index] == clean_subterm
109
113
  end
110
114
  end
111
115
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: change_the_subject
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Kadel
@@ -10,7 +10,7 @@ authors:
10
10
  - Eliot Jordan
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2025-02-20 00:00:00.000000000 Z
13
+ date: 2025-03-25 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: yaml