relaton-doi 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 36fbec3dfe6ed0635449ed79967ab8f78e8ea10569de97b144926de8ea64b330
4
- data.tar.gz: 766e94778c9a4a5d4a5a949d3329409604a1d4fe87079f31c1ce71280049c33c
3
+ metadata.gz: '058c5f5551b87b97c9233448210c2e19394a590fc83fffbb28a925d9b9a88c5c'
4
+ data.tar.gz: a2231749ac4c0e15b626dba1b95977562e7f19a2f9937193383e421f1cafc020
5
5
  SHA512:
6
- metadata.gz: 7921e6e71d1526bc2d26240616200ad832a0e228772336764a0ac9484de5427382141c89dc8718a30f12819696304746dc5ddfe060719a034a73fcf0d4f6c6a6
7
- data.tar.gz: fdb1f361f3b6cd14bb07401fc3594de0222c4d1d76fcac1f216198075b4827d35d317af30d7f3d372896a163b8fb32335d96ec90931b1eb6cd4cd85c970d4206
6
+ metadata.gz: b80efebfe1483f54f358b55cc451fc6786d9f79ebad8ca511a6a979e284f9c59b9b7335b66bbf34734e874fb6fefac19d38fa7c87ab5ce5891cc7cf91fc8018b
7
+ data.tar.gz: af171143ae77d7550d01dc45616a667f951efe49551ce202e2dea71f6410fc52c837f8407718d496810143f985d937c400303dd7acd56c39098300608df4d05d
data/README.adoc CHANGED
@@ -39,6 +39,20 @@ $ gem install relaton-doi
39
39
 
40
40
  == Usage
41
41
 
42
+ === Configuration
43
+
44
+ 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 `RelatonDoi.configure` block.
45
+
46
+ [source,ruby]
47
+ ----
48
+ require 'relaton_doi'
49
+ => true
50
+
51
+ RelatonDoi.configure do |config|
52
+ config.logger.level = Logger::DEBUG
53
+ end
54
+ ----
55
+
42
56
  === Retrieving items of known type using DOI
43
57
 
44
58
  If the resulting bibliographic item returned from CrossRef is a known Relaton
@@ -0,0 +1,10 @@
1
+ module RelatonDoi
2
+ module Config
3
+ include RelatonBib::Config
4
+ end
5
+ extend Config
6
+
7
+ class Configuration < RelatonBib::Configuration
8
+ PROGNAME = "relaton-doi".freeze
9
+ end
10
+ end
@@ -12,11 +12,14 @@ module RelatonDoi
12
12
  # RelatonNist::NistBibliographicItem] The bibitem.
13
13
  #
14
14
  def get(doi)
15
- warn "[relaton-doi] [\"#{doi}\"] fetching..."
15
+ Util.warn "(#{doi}) fetching..."
16
16
  id = doi.sub(%r{^doi:}, "")
17
17
  message = get_by_id id
18
- warn "[relaton-doi] [\"#{doi}\"] found #{message['DOI']}"
18
+ Util.warn "(#{doi}) found `#{message['DOI']}`"
19
19
  Parser.parse message
20
+ rescue Serrano::NotFound
21
+ Util.warn "(#{doi}) not found"
22
+ nil
20
23
  end
21
24
 
22
25
  #
@@ -45,7 +45,7 @@ module RelatonDoi
45
45
  # Returns hash of XML grammar
46
46
  # @return [String]
47
47
  def grammar_hash
48
- @grammar_hash ||= ::RelatonBib.grammar_hash
48
+ @grammar_hash ||= ::RelatonDoi.grammar_hash
49
49
  end
50
50
  end
51
51
  end
@@ -0,0 +1,9 @@
1
+ module RelatonDoi
2
+ module Util
3
+ extend RelatonBib::Util
4
+
5
+ def self.logger
6
+ RelatonDoi.configuration.logger
7
+ end
8
+ end
9
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RelatonDoi
4
- VERSION = "1.16.0"
4
+ VERSION = "1.16.1"
5
5
  end
data/lib/relaton_doi.rb CHANGED
@@ -8,6 +8,8 @@ require "relaton_ietf"
8
8
  require "relaton_ieee"
9
9
  require "relaton_nist"
10
10
  require_relative "relaton_doi/version"
11
+ require_relative "relaton_doi/config"
12
+ require_relative "relaton_doi/util"
11
13
  require_relative "relaton_doi/parser"
12
14
  require_relative "relaton_doi/crossref"
13
15
 
@@ -16,4 +18,11 @@ Serrano.configuration do |config|
16
18
  end
17
19
 
18
20
  module RelatonDoi
21
+ extend self
22
+
23
+ def grammar_hash
24
+ Digest::MD5.hexdigest(
25
+ RelatonNist::VERSION + RelatonIetf::VERSION + RelatonIeee::VERSION + RelatonBipm::VERSION + RelatonBib::VERSION,
26
+ )
27
+ end
19
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-doi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
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-03 00:00:00.000000000 Z
11
+ date: 2023-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: relaton-bib
@@ -115,9 +115,11 @@ files:
115
115
  - bin/rspec
116
116
  - bin/setup
117
117
  - lib/relaton_doi.rb
118
+ - lib/relaton_doi/config.rb
118
119
  - lib/relaton_doi/crossref.rb
119
120
  - lib/relaton_doi/parser.rb
120
121
  - lib/relaton_doi/processor.rb
122
+ - lib/relaton_doi/util.rb
121
123
  - lib/relaton_doi/version.rb
122
124
  - relaton-doi.gemspec
123
125
  homepage: https://github.com/relaton/relaton-doi