relaton-ogc 1.16.1 → 1.16.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: 152c757b6f64d56ff90726fea30e01bbbb3d9314e1d7a1227ef8eb37f60a62c9
4
- data.tar.gz: 7440398d287b9db7afc8a18f7ccb22eff2c4628ea947b2ae8e88a732c527a807
3
+ metadata.gz: fa6ff540d50e236a8e1aae32805840c0e24a4d17b7b1038b2357472ea74ff65a
4
+ data.tar.gz: ee011e12cc9aab1b0e0928e13d46627a4b0772cb34e107a401c8d06c3445e27e
5
5
  SHA512:
6
- metadata.gz: cdae3988f8c6baf95a5d961b226b1f2f6fd30656b0a5db1e2763f07f0943e5797ed44e269a8a6192763fbd25d3569524dde5c4930ebeab289021825ac8a7e283
7
- data.tar.gz: 35483c4022a25d73fdfa8a5ee10eb136fce36192acc943fb7c98621f15d8abcf50014fd035135c65ea54dfe24e0b6e02fc990530017acc074f07da02734bfb9e
6
+ metadata.gz: cc2f32138c399f241989b6288ca4682d55067d14e05ddb7a236119976e4ec725ac5f5362a431364c1704aab503a27112b5665592d3aa67563615380d06acfee1
7
+ data.tar.gz: 6db6033ad4d01acaedf66fe1bf6ae8fe7ab23127bd690e86e38849897b05961e0c5669a04921db398336d29b3cec1df4cc30ed307905bb944e28776eea32e916
@@ -72,7 +72,7 @@ module RelatonOgc
72
72
  get_data do |etag, json|
73
73
  no_errors = true
74
74
  json.each { |_, hit| fetch_doc(hit) || no_errors = false }
75
- warn "[relaton-ogc] WARNING Duplicated documents: #{@dupids.to_a.join(', ')}" if @dupids.any?
75
+ warn "WARNING Duplicated documents: #{@dupids.to_a.join(', ')}" if @dupids.any?
76
76
  self.etag = etag if no_errors
77
77
  index.save
78
78
  end
@@ -23,7 +23,7 @@ module RelatonOgc
23
23
  result = bib_search_filter(code, year, opts) || (return nil)
24
24
  ret = bib_results_filter(result, year)
25
25
  if ret[:ret]
26
- warn "[relaton-ogc] (\"#{code}\") found #{ret[:ret].docidentifier.first.id}"
26
+ Util.warn "(#{code}) found `#{ret[:ret].docidentifier.first.id}`"
27
27
  ret[:ret]
28
28
  else
29
29
  fetch_ref_err(code, year, ret[:years])
@@ -33,7 +33,7 @@ module RelatonOgc
33
33
  private
34
34
 
35
35
  def bib_search_filter(code, year, opts)
36
- warn "[relaton-ogc] (\"#{code}\") fetching..."
36
+ Util.warn "(#{code}) fetching..."
37
37
  search(code, year, opts)
38
38
  end
39
39
 
@@ -67,12 +67,12 @@ module RelatonOgc
67
67
  # @param year [String]
68
68
  # @param missed_years [Array<Strig>]
69
69
  def fetch_ref_err(code, year, missed_years)
70
- id = year ? "#{code} year #{year}" : code
71
- warn "[relaton-ogc] WARNING: no match found online for #{id}. " \
72
- "The code must be exactly like it is on the standards website."
70
+ id = year ? "`#{code}` year `#{year}`" : "#`{code}`"
71
+ Util.warn "WARNING: no match found online for #{id}. " \
72
+ "The code must be exactly like it is on the standards website."
73
73
  unless missed_years.empty?
74
- warn "[relaton-ogc] (There was no match for #{year}, though there " \
75
- "were matches found for #{missed_years.join(', ')}.)"
74
+ Util.warn "There was no match for `#{year}`, though there " \
75
+ "were matches found for `#{missed_years.join('`, `')}`."
76
76
  end
77
77
  nil
78
78
  end
@@ -1,3 +1,3 @@
1
1
  module RelatonOgc
2
- VERSION = "1.16.1".freeze
2
+ VERSION = "1.16.2".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-ogc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.1
4
+ version: 1.16.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.