relaton-omg 1.16.1 → 1.16.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 68a04e76b6f9b7e0262d94edad9b9f419940e78e6dd983cfa6707f8142cfec90
4
- data.tar.gz: 6e8d87f0e245b545f55dc2c329cbc8801e29555317630134446f49f0532a4fc1
3
+ metadata.gz: bf765669d79fa3b144851fb1ed70d7a07e42001ec1db537042582caccad95eef
4
+ data.tar.gz: 796eede5c6f75112df5b0c410705cbda8381958b81e44fd58e2fa895547254c1
5
5
  SHA512:
6
- metadata.gz: 73fe10dc67e851fb68219c56c8254a82b56b080e1b1608bb9ad4e396a6dcbfc2cf31ba4db40247fd80f4a3d5a6a13bd4ec6fa4cc3f7a270b7a93fbd61783eee4
7
- data.tar.gz: c5d8eada8199773bd6711094e11a70ea8fb42c13f0531c6b75064a80f5f6f106f02b0446d8eb1f42213664962891ec2f10e045d35158afa9eff293e2e19adb2d
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
- => #<RelatonOmg::OmgBibliographicItem:0x007fda17eab2f0
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] no document found for "OMG 1111" reference.
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}) fetching from OMG website..."
18
+ Util.warn "(#{code}) Fetching from www.omg.org ..."
19
19
  result = search code
20
20
  if result
21
- Util.warn "(#{code}) found `#{result.docidentifier.first.id}`"
21
+ Util.warn "(#{code}) Found: `#{result.docidentifier.first.id}`"
22
22
  else
23
- Util.warn "(#{code}) no document found"
23
+ Util.warn "(#{code}) Not found."
24
24
  end
25
25
  result
26
26
  end
@@ -1,3 +1,3 @@
1
1
  module RelatonOmg
2
- VERSION = "1.16.1".freeze
2
+ VERSION = "1.16.2".freeze
3
3
  end
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.1
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-09-22 00:00:00.000000000 Z
11
+ date: 2023-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: relaton-bib