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 +4 -4
- data/lib/relaton_cie/cie_bibliography.rb +4 -4
- data/lib/relaton_cie/config.rb +10 -0
- data/lib/relaton_cie/util.rb +9 -0
- data/lib/relaton_cie/version.rb +1 -1
- data/lib/relaton_cie.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: 736da12c1c19f8a12b9dcf4b7ceed1fc8a2f30b25a43dc3ee745e6be4cb42f44
|
4
|
+
data.tar.gz: fb84d6dbeea2788218efe2f7f6ed003be5b077bf507a756d73367b16218219d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 "
|
18
|
+
Util.warn "(#{code}) fetching..."
|
19
19
|
result = search code
|
20
20
|
if result
|
21
|
-
warn "
|
21
|
+
Util.warn "(#{code}) found `#{result.docidentifier.first.id}`"
|
22
22
|
else
|
23
|
-
warn "
|
24
|
-
|
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
|
data/lib/relaton_cie/version.rb
CHANGED
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.
|
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
|
@@ -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
|