relaton-omg 1.16.1 → 1.16.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.adoc +19 -5
- data/lib/relaton_omg/omg_bibliography.rb +3 -3
- data/lib/relaton_omg/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf765669d79fa3b144851fb1ed70d7a07e42001ec1db537042582caccad95eef
|
4
|
+
data.tar.gz: 796eede5c6f75112df5b0c410705cbda8381958b81e44fd58e2fa895547254c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbc567d8ce33479788dd18d656c6310185e15eabde27e687ffbe9baf85e3f11f3f0652e19950599cb2a279b79fe8512b20cfb7698eb739637cfceff0d0586982
|
7
|
+
data.tar.gz: af419bb675586598d1a04a3de0d00de23b1ad5b484f70acbddbc9b143167ca595737730fc6bca03d5601a8cb24e0191e54b48838efe18f9a33a4792b2edf802d
|
data/README.adoc
CHANGED
@@ -31,6 +31,20 @@ Or install it yourself as:
|
|
31
31
|
|
32
32
|
== Usage
|
33
33
|
|
34
|
+
=== Configuration
|
35
|
+
|
36
|
+
Configuration is optional. The available option is `logger` which is a `Logger` instance. By default, the logger is `Logger.new($stderr)` with `Logger::WARN` level. To change the logger level, use `RelatonOmg.configure` block.
|
37
|
+
|
38
|
+
[source,ruby]
|
39
|
+
----
|
40
|
+
require 'relaton_omg'
|
41
|
+
=> true
|
42
|
+
|
43
|
+
RelatonOmg.configure do |config|
|
44
|
+
config.logger.level = Logger::DEBUG
|
45
|
+
end
|
46
|
+
----
|
47
|
+
|
34
48
|
=== Search document
|
35
49
|
|
36
50
|
Reference format is `OMG + {ACRONYM} + {VERSION}`
|
@@ -40,16 +54,16 @@ Reference format is `OMG + {ACRONYM} + {VERSION}`
|
|
40
54
|
|
41
55
|
[source,ruby]
|
42
56
|
----
|
43
|
-
require 'relaton_omg'
|
44
|
-
=> true
|
45
|
-
|
46
57
|
item = RelatonOmg::OmgBibliography.get 'OMG AMI4CCM 1.0'
|
47
|
-
|
58
|
+
[relaton-omg] (OMG AMI4CCM 1.0) Fetching from www.omg.org ...
|
59
|
+
[relaton-omg] (OMG AMI4CCM 1.0) Found: `AMI4CCM 1.0`
|
60
|
+
=> #<RelatonOmg::OmgBibliographicItem:0x000000010435a520
|
48
61
|
...
|
49
62
|
|
50
63
|
# Return nil if the document doesn't exist.
|
51
64
|
RelatonOmg::OmgBibliography.get 'OMG 1111'
|
52
|
-
[relaton-omg]
|
65
|
+
[relaton-omg] (OMG 1111) Fetching from www.omg.org ...
|
66
|
+
[relaton-omg] (OMG 1111) Not found.
|
53
67
|
=> nil
|
54
68
|
----
|
55
69
|
|
@@ -15,12 +15,12 @@ module RelatonOmg
|
|
15
15
|
# @param opts [Hash] options
|
16
16
|
# @return [RelatonOmg::OmgBibliographicItem]
|
17
17
|
def get(code, _year = nil, _opts = {})
|
18
|
-
Util.warn "(#{code})
|
18
|
+
Util.warn "(#{code}) Fetching from www.omg.org ..."
|
19
19
|
result = search code
|
20
20
|
if result
|
21
|
-
Util.warn "(#{code})
|
21
|
+
Util.warn "(#{code}) Found: `#{result.docidentifier.first.id}`"
|
22
22
|
else
|
23
|
-
Util.warn "(#{code})
|
23
|
+
Util.warn "(#{code}) Not found."
|
24
24
|
end
|
25
25
|
result
|
26
26
|
end
|
data/lib/relaton_omg/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relaton-omg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.16.
|
4
|
+
version: 1.16.2
|
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-
|
11
|
+
date: 2023-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: relaton-bib
|