relaton-iho 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.adoc +6 -13
- data/grammars/basicdoc.rng +3 -0
- data/lib/relaton_iho/document_type.rb +1 -1
- data/lib/relaton_iho/iho_bibliography.rb +3 -3
- data/lib/relaton_iho/util.rb +1 -4
- data/lib/relaton_iho/version.rb +1 -1
- data/lib/relaton_iho/xml_parser.rb +4 -0
- data/lib/relaton_iho.rb +0 -1
- data/relaton_iho.gemspec +2 -1
- metadata +19 -6
- data/lib/relaton_iho/config.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af09b151cd27cb724b5ee702811515777a020e5cc751053f59d6700810e677b1
|
4
|
+
data.tar.gz: 0b5a2fb2a3e7c8a552de0da8c7be9a04ef74f47830f64eb9b09a2fd95aaa38b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92d5f66d23261995ad13ec91b807d13566e2c4d89270537c307cca53b3c08d2dc531f7354f5de2b894b8ef38a439f6763fdb097c9fe700aa8c6f04d63161ed1c
|
7
|
+
data.tar.gz: 9a9914fd40cd47b0a34a447eb8485c970da7077b8c9afe366707734bb0788e574c32366c8e0b5a5b72b5ac8577071d62a580d955585735e8d8138696066debb8
|
data/README.adoc
CHANGED
@@ -37,26 +37,15 @@ $ gem install relaton-iho
|
|
37
37
|
|
38
38
|
== Usage
|
39
39
|
|
40
|
-
===
|
40
|
+
=== Search for a standard using keywords
|
41
41
|
|
42
|
-
|
42
|
+
Reference can be specified with or without an edition. References without an edition will return the latest edition of the standard. References with an edition will return the standard with the specified edition.
|
43
43
|
|
44
44
|
[source,ruby]
|
45
45
|
----
|
46
46
|
require 'relaton_iho'
|
47
47
|
=> true
|
48
48
|
|
49
|
-
RelatonIho.configure do |config|
|
50
|
-
config.logger.level = Logger::DEBUG
|
51
|
-
end
|
52
|
-
----
|
53
|
-
|
54
|
-
=== Search for a standard using keywords
|
55
|
-
|
56
|
-
Reference can be specified with or without an edition. References without an edition will return the latest edition of the standard. References with an edition will return the standard with the specified edition.
|
57
|
-
|
58
|
-
[source,ruby]
|
59
|
-
----
|
60
49
|
# Search for a standard using a reference without an edition
|
61
50
|
item = RelatonIho::IhoBibliography.search("IHO B-11")
|
62
51
|
[relaton-iho] (IHO B-11) Fetching from Relaton repository ...
|
@@ -142,6 +131,10 @@ RelatonIho::IhoBibliographicItem.from_hash hash
|
|
142
131
|
...
|
143
132
|
----
|
144
133
|
|
134
|
+
=== Logging
|
135
|
+
|
136
|
+
RelatonIho uses the relaton-logger gem for logging. By default, it logs to STDOUT. To change the log levels and add other loggers, read the https://github.com/relaton/relaton-logger#usage[relaton-logger] documentation.
|
137
|
+
|
145
138
|
== Development
|
146
139
|
|
147
140
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/grammars/basicdoc.rng
CHANGED
@@ -14,12 +14,12 @@ module RelatonIho
|
|
14
14
|
# @return [RelatonIho::IhoBibliographicItem, nil] the IHO standard or nil if not found
|
15
15
|
#
|
16
16
|
def search(text, _year = nil, _opts = {}) # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
|
17
|
-
Util.
|
17
|
+
Util.info "Fetching from Relaton repository ...", key: text
|
18
18
|
ref = text.sub(/^IHO\s/, "").sub(/^([[:alpha:]]+)(\d+)/, '\1-\2')
|
19
19
|
index = Relaton::Index.find_or_create :iho, url: "#{ENDPOINT}index.zip"
|
20
20
|
row = index.search(ref).max_by { |r| r[:id] }
|
21
21
|
unless row
|
22
|
-
Util.
|
22
|
+
Util.info "Not found.", key: text
|
23
23
|
return
|
24
24
|
end
|
25
25
|
|
@@ -33,7 +33,7 @@ module RelatonIho
|
|
33
33
|
hash = HashConverter.hash_to_bib yaml
|
34
34
|
hash[:fetched] = Date.today.to_s
|
35
35
|
item = IhoBibliographicItem.new(**hash)
|
36
|
-
Util.
|
36
|
+
Util.info "Found: `#{item.docidentifier.first.id}`", key: text
|
37
37
|
item
|
38
38
|
rescue SocketError, Errno::EINVAL, Errno::ECONNRESET, EOFError,
|
39
39
|
Net::HTTPBadResponse, Net::HTTPHeaderSyntaxError,
|
data/lib/relaton_iho/util.rb
CHANGED
data/lib/relaton_iho/version.rb
CHANGED
data/lib/relaton_iho.rb
CHANGED
data/relaton_iho.gemspec
CHANGED
@@ -21,6 +21,7 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.require_paths = ["lib"]
|
22
22
|
s.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
|
23
23
|
|
24
|
-
s.add_dependency "
|
24
|
+
s.add_dependency "base64"
|
25
|
+
s.add_dependency "relaton-bib", "~> 1.19.0"
|
25
26
|
s.add_dependency "relaton-index", "~> 0.2.0"
|
26
27
|
end
|
metadata
CHANGED
@@ -1,29 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relaton-iho
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: base64
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: relaton-bib
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
16
30
|
requirements:
|
17
31
|
- - "~>"
|
18
32
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
33
|
+
version: 1.19.0
|
20
34
|
type: :runtime
|
21
35
|
prerelease: false
|
22
36
|
version_requirements: !ruby/object:Gem::Requirement
|
23
37
|
requirements:
|
24
38
|
- - "~>"
|
25
39
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
40
|
+
version: 1.19.0
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: relaton-index
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -62,7 +76,6 @@ files:
|
|
62
76
|
- grammars/relaton-iho.rng
|
63
77
|
- lib/relaton_iho.rb
|
64
78
|
- lib/relaton_iho/comment_periond.rb
|
65
|
-
- lib/relaton_iho/config.rb
|
66
79
|
- lib/relaton_iho/document_type.rb
|
67
80
|
- lib/relaton_iho/editorial_group.rb
|
68
81
|
- lib/relaton_iho/eg.yml
|
@@ -94,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
107
|
- !ruby/object:Gem::Version
|
95
108
|
version: '0'
|
96
109
|
requirements: []
|
97
|
-
rubygems_version: 3.3.
|
110
|
+
rubygems_version: 3.3.27
|
98
111
|
signing_key:
|
99
112
|
specification_version: 4
|
100
113
|
summary: 'RelatonIho: retrieve IHO Standards for bibliographic using the BibliographicItem
|