relaton-ecma 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: 7b85e57cdcdbe42357ffaa34abce500363874a0a7e22968478ccc469634e3760
4
- data.tar.gz: b623c0c898cc6ac095a06b1cadfc84910fecf395a6a0638ba82f5cf7a8ea4798
3
+ metadata.gz: 79a0e5c939fec089e35a4f10ea7c62bdbc9ca1cea332dbbdb61cee01fc255b30
4
+ data.tar.gz: 5c9c499101971798f03ff2953bf5d4a7693a9edbac031bf7793ce568df97582c
5
5
  SHA512:
6
- metadata.gz: d0d75ff9175f0971a1cd429565dc82abe4429cc596b7c38e9a107f3bb832c3139c5d749523d6ed44667f86a974d4e3259c17bcedf78a911d7970cd8d03c8727d
7
- data.tar.gz: 92ebfe927d53e728b16972a00c6ba6fdeab2b35a314d3b9d3539f2cc6296e477694b028299553a26169d14d2adfcb7928c968e76a37f797fa4796ffbbf53b9bc
6
+ metadata.gz: 40bca3bd29a6fbd8c668ba2dca1ed9fedfeb03bc248162b5f5b702d1fd80bd32fc56c33e83e3c0a35e82eb9e4699dd84396c6f24e9bfa8cc9203639c6cee2ca4
7
+ data.tar.gz: 7eccd989b4bf12be08f519b8f7564aab8bdd823929e0c3206a903f5f0679460458e54ea89eb2ca7b2d75dd20b4845268b821d8fc4c5766ed1e27496e41c247b8
@@ -0,0 +1,10 @@
1
+ module RelatonEcma
2
+ module Config
3
+ include RelatonBib::Config
4
+ end
5
+ extend Config
6
+
7
+ class Configuration < RelatonBib::Configuration
8
+ PROGNAME = "relaton-ecma".freeze
9
+ end
10
+ end
@@ -40,14 +40,14 @@ module RelatonEcma
40
40
  # @param opts [Hash] not used
41
41
  # @return [RelatonEcma::BibliographicItem] Relaton of reference
42
42
  def get(code, _year = nil, _opts = {})
43
- warn "[relaton-ecma] (\"#{code}\") fetching..."
43
+ Util.warn "(#{code}) fetching..."
44
44
  result = fetch_doc(code)
45
45
  if result
46
- warn "[relaton-ecma] (\"#{code}\") found #{result.docidentifier.first.id}"
46
+ Util.warn "(#{code}) found `#{result.docidentifier.first.id}`"
47
47
  # item
48
48
  else
49
- warn "[relaton-ecma] WARNING no match found online for #{code}. " \
50
- "The code must be exactly like it is on the standards website."
49
+ Util.warn "(#{code}) WARNING no match found online for `#{code}`. " \
50
+ "The code must be exactly like it is on the standards website."
51
51
  end
52
52
  result
53
53
  end
@@ -0,0 +1,9 @@
1
+ module RelatonEcma
2
+ module Util
3
+ extend RelatonBib::Util
4
+
5
+ def self.logger
6
+ RelatonEcma.configuration.logger
7
+ end
8
+ end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module RelatonEcma
2
- VERSION = "1.16.0".freeze
2
+ VERSION = "1.16.1".freeze
3
3
  end
data/lib/relaton_ecma.rb CHANGED
@@ -4,6 +4,8 @@ require "yaml"
4
4
  require "relaton/index"
5
5
  require "relaton_bib"
6
6
  require "relaton_ecma/version"
7
+ require "relaton_ecma/config"
8
+ require "relaton_ecma/util"
7
9
  require "relaton_ecma/bibliographic_item"
8
10
  require "relaton_ecma/xml_parser"
9
11
  require "relaton_ecma/hash_converter"
@@ -15,9 +17,9 @@ module RelatonEcma
15
17
  # Returns hash of XML reammar
16
18
  # @return [String]
17
19
  def self.grammar_hash
18
- gem_path = File.expand_path "..", __dir__
19
- grammars_path = File.join gem_path, "grammars", "*"
20
- grammars = Dir[grammars_path].sort.map { |gp| File.read gp }.join
21
- Digest::MD5.hexdigest grammars
20
+ # gem_path = File.expand_path "..", __dir__
21
+ # grammars_path = File.join gem_path, "grammars", "*"
22
+ # grammars = Dir[grammars_path].sort.map { |gp| File.read gp }.join
23
+ Digest::MD5.hexdigest RelatonEcma::VERSION + RelatonBib::VERSION # grammars
22
24
  end
23
25
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-ecma
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
@@ -79,11 +79,13 @@ files:
79
79
  - grammars/relaton-ecma.rng
80
80
  - lib/relaton_ecma.rb
81
81
  - lib/relaton_ecma/bibliographic_item.rb
82
+ - lib/relaton_ecma/config.rb
82
83
  - lib/relaton_ecma/data_fetcher.rb
83
84
  - lib/relaton_ecma/data_parser.rb
84
85
  - lib/relaton_ecma/ecma_bibliography.rb
85
86
  - lib/relaton_ecma/hash_converter.rb
86
87
  - lib/relaton_ecma/processor.rb
88
+ - lib/relaton_ecma/util.rb
87
89
  - lib/relaton_ecma/version.rb
88
90
  - lib/relaton_ecma/xml_parser.rb
89
91
  - relaton_ecma.gemspec