relaton-cie 1.16.0 → 1.16.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5734bdd3bda68a01b807d6852a31d7baca1c5e881beb0920586dcbf5f8a86304
4
- data.tar.gz: adae1acf15433e788fc25eb4d1aa96a02acecdf83fae8eff884e26ade4d54363
3
+ metadata.gz: 736da12c1c19f8a12b9dcf4b7ceed1fc8a2f30b25a43dc3ee745e6be4cb42f44
4
+ data.tar.gz: fb84d6dbeea2788218efe2f7f6ed003be5b077bf507a756d73367b16218219d9
5
5
  SHA512:
6
- metadata.gz: 673fa336c8c794796b9c0b12619b3c16ff2ec0440e428a685892209e8d517d7abac4bf9f5ae838ca2d77c31fe0c711edbcd43f9be861175b72580875e62769d5
7
- data.tar.gz: '08387ec9150fd753c355c4fa9a5abab994301698b56bf2a12c1918511cad9fbdc991f1f4c72f407bf996fd978608f09fb5ee6c1fac2c408a8ef953b6acac8e84'
6
+ metadata.gz: 17c841542d8ee4922923d7e741ed7b1e8abacf52be55234c24ad859190c81155402f1cf561901f603210a0f5f5aaaf2998c8926a5e04db6b2d71496be5d1164f
7
+ data.tar.gz: cb10e7ede2db4f1dccc38e6ff13cfed5fa6876adae21e3e7602892c4a75c54aaf434d21f4f649d77dafc500c9eeb8921107c3be229321864c23ebfe05ea91475
@@ -15,13 +15,13 @@ module RelatonCie
15
15
  # @param opts [Hash] not used
16
16
  # @return [RelatonCie::BibliographicItem] Relaton of reference
17
17
  def get(code, _year = nil, _opts = {})
18
- warn "[relaton-cie] (\"#{code}\") fetching..."
18
+ Util.warn "(#{code}) fetching..."
19
19
  result = search code
20
20
  if result
21
- warn "[relaton-cie] (\"#{code}\") found #{result.docidentifier.first.id}"
21
+ Util.warn "(#{code}) found `#{result.docidentifier.first.id}`"
22
22
  else
23
- warn "[relaton-cie] WARNING no match found online for #{code}. " \
24
- "The code must be exactly like it is on the standards website."
23
+ Util.warn "(#{code}) WARNING no match found online for `#{code}`. " \
24
+ "The code must be exactly like it is on the standards website."
25
25
  end
26
26
  result
27
27
  end
@@ -0,0 +1,10 @@
1
+ module RelatonCie
2
+ module Config
3
+ include RelatonBib::Config
4
+ end
5
+ extend Config
6
+
7
+ class Configuration < RelatonBib::Configuration
8
+ PROGNAME = "relaton-cie".freeze
9
+ end
10
+ end
@@ -0,0 +1,9 @@
1
+ module RelatonCie
2
+ module Util
3
+ extend RelatonBib::Util
4
+
5
+ def self.logger
6
+ RelatonCie.configuration.logger
7
+ end
8
+ end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module RelatonCie
2
- VERSION = "1.16.0".freeze
2
+ VERSION = "1.16.1".freeze
3
3
  end
data/lib/relaton_cie.rb CHANGED
@@ -5,6 +5,8 @@ require "relaton/index"
5
5
  require "relaton_bib"
6
6
  # require "relaton_bib/name_parser"
7
7
  require "relaton_cie/version"
8
+ require "relaton_cie/config"
9
+ require "relaton_cie/util"
8
10
  require "relaton_cie/bibliographic_item"
9
11
  require "relaton_cie/cie_bibliography"
10
12
  require "relaton_cie/scrapper"
@@ -16,9 +18,9 @@ module RelatonCie
16
18
  # Returns hash of XML reammar
17
19
  # @return [String]
18
20
  def self.grammar_hash
19
- gem_path = File.expand_path "..", __dir__
20
- grammars_path = File.join gem_path, "grammars", "*"
21
- grammars = Dir[grammars_path].sort.map { |gp| File.read gp }.join
22
- Digest::MD5.hexdigest grammars
21
+ # gem_path = File.expand_path "..", __dir__
22
+ # grammars_path = File.join gem_path, "grammars", "*"
23
+ # grammars = Dir[grammars_path].sort.map { |gp| File.read gp }.join
24
+ Digest::MD5.hexdigest RelatonCie::VERSION + RelatonBib::VERSION # grammars
23
25
  end
24
26
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-cie
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.16.1
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-09-03 00:00:00.000000000 Z
11
+ date: 2023-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mechanize
@@ -95,10 +95,12 @@ files:
95
95
  - lib/relaton_cie.rb
96
96
  - lib/relaton_cie/bibliographic_item.rb
97
97
  - lib/relaton_cie/cie_bibliography.rb
98
+ - lib/relaton_cie/config.rb
98
99
  - lib/relaton_cie/data_fetcher.rb
99
100
  - lib/relaton_cie/hash_converter.rb
100
101
  - lib/relaton_cie/processor.rb
101
102
  - lib/relaton_cie/scrapper.rb
103
+ - lib/relaton_cie/util.rb
102
104
  - lib/relaton_cie/version.rb
103
105
  - lib/relaton_cie/xml_parser.rb
104
106
  - relaton_cie.gemspec