relaton-ecma 1.16.0 → 1.16.1
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 +4 -4
- data/lib/relaton_ecma/config.rb +10 -0
- data/lib/relaton_ecma/ecma_bibliography.rb +4 -4
- data/lib/relaton_ecma/util.rb +9 -0
- data/lib/relaton_ecma/version.rb +1 -1
- data/lib/relaton_ecma.rb +6 -4
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79a0e5c939fec089e35a4f10ea7c62bdbc9ca1cea332dbbdb61cee01fc255b30
|
4
|
+
data.tar.gz: 5c9c499101971798f03ff2953bf5d4a7693a9edbac031bf7793ce568df97582c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40bca3bd29a6fbd8c668ba2dca1ed9fedfeb03bc248162b5f5b702d1fd80bd32fc56c33e83e3c0a35e82eb9e4699dd84396c6f24e9bfa8cc9203639c6cee2ca4
|
7
|
+
data.tar.gz: 7eccd989b4bf12be08f519b8f7564aab8bdd823929e0c3206a903f5f0679460458e54ea89eb2ca7b2d75dd20b4845268b821d8fc4c5766ed1e27496e41c247b8
|
@@ -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 "
|
43
|
+
Util.warn "(#{code}) fetching..."
|
44
44
|
result = fetch_doc(code)
|
45
45
|
if result
|
46
|
-
warn "
|
46
|
+
Util.warn "(#{code}) found `#{result.docidentifier.first.id}`"
|
47
47
|
# item
|
48
48
|
else
|
49
|
-
warn "
|
50
|
-
|
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
|
data/lib/relaton_ecma/version.rb
CHANGED
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.
|
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-
|
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
|