relaton-nist 1.14.5 → 1.14.6

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: 2b442dc75e9c4b20221b94bd56200f5391f479709cb44bda543827bdeca67cf7
4
- data.tar.gz: 553d1a834486c36d3febec1046480f5e803d98865c34f119c5698b253f3186fd
3
+ metadata.gz: ff158dab9df4bfc2254789771db9ca74bc422b9d6ac78351da0ccbca1d858815
4
+ data.tar.gz: e7ef8d2cb1ff797095f7c6646194610ffe7bab67f97d909c9d54d75d9f0552c3
5
5
  SHA512:
6
- metadata.gz: d1b1c058632239fefd0bb171f645eba0a7036e806fc3064faa4f2742d386e01e07f891b4c89172ae6b9811e75d6d05b0603391e68b58ae88789cb2d9cbd8ed35
7
- data.tar.gz: '07039ccd91afca1ebc62471d0c7b3fa64695f7f5ed88f0eb11fd12d00c87851a33f66c08d7ba4e69f61ff0b1a82bb9e0a88eaf613d18d00b4a4e52ac051916f4'
6
+ metadata.gz: ef6f0be37367d7e71ac0783be8252219a9a49e7affe27bfcef78c21929d64c10b2f4cba081a4515d75e64bfccffed21dd72848d2653594363f9e4fa753c7c002
7
+ data.tar.gz: f9b24bb62b115b11f291a9514420426a758d3207062e4bd75fc09169f32338d3891ca802441df405ce9b4ab159f39aea2762c458e811c30e87523e9835a94dbc
@@ -29,14 +29,6 @@ module RelatonNist
29
29
  end
30
30
 
31
31
  def parse_docid(doc) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
32
- # case doi
33
- # when "10.6028/NBS.CIRC.12e2revjune" then doi.sub!("13e", "12e")
34
- # when "10.6028/NBS.CIRC.36e2" then doi.sub!("46e", "36e")
35
- # when "10.6028/NBS.HB.67suppJune1967" then doi.sub!("1965", "1967")
36
- # when "10.6028/NBS.HB.105-1r1990" then doi.sub!("105-1-1990", "105-1r1990")
37
- # when "10.6028/NIST.HB.150-10-1995" then doi.sub!(/150-10$/, "150-10-1995")
38
- # end
39
- # anchor = doi.split("/")[1..-1].join "/"
40
32
  [
41
33
  { type: "NIST", id: pub_id(doc), primary: true },
42
34
  { type: "DOI", id: fetch_doi(doc) },
@@ -135,8 +127,12 @@ module RelatonNist
135
127
  # @param doc [Nokogiri::XML::Element]
136
128
  # @return [Array<RelatonBib::FormattedString>]
137
129
  def fetch_abstract(doc)
138
- doc.xpath("jats:abstract/jats:p", "jats" => "http://www.ncbi.nlm.nih.gov/JATS1").map do |a|
139
- RelatonBib::FormattedString.new(content: a.text, language: doc["language"], script: "Latn")
130
+ doc.xpath(
131
+ "jats:abstract/jats:p", "jats" => "http://www.ncbi.nlm.nih.gov/JATS1"
132
+ ).each_with_object([]) do |a, m|
133
+ next if a.text.empty?
134
+
135
+ m << RelatonBib::FormattedString.new(content: a.text, language: doc["language"], script: "Latn")
140
136
  end
141
137
  end
142
138
 
@@ -1,3 +1,3 @@
1
1
  module RelatonNist
2
- VERSION = "1.14.5".freeze
2
+ VERSION = "1.14.6".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-nist
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.5
4
+ version: 1.14.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-05 00:00:00.000000000 Z
11
+ date: 2023-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: relaton-bib