relaton-ietf 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d6e85cde14717a5171d911a03dd3f069ab295314a9750a4795ee4a40694ad525
4
- data.tar.gz: d5e62680f2a47c54131c8f9a14bcf03eacd00c86377d99f8a4f126e295afc03c
3
+ metadata.gz: d38fb8a37a82452b362231a9c9c5b0424c736ed9b736590d89a486fad08b56e3
4
+ data.tar.gz: 0af04bcb2a9573b6548442a2182a476de630f19ad10c1c6a492a9271fe905251
5
5
  SHA512:
6
- metadata.gz: af082b142044e88a11d1580c8f1dc2cc8a21a3cabd26a166622513125bcee6f5acd9212233dfabcf21a4a5bb0194ad27274a06577ce76f2e1afc2623d94d6a74
7
- data.tar.gz: 608c4bcfb0cee144a867b8cdfc04ceda41554b73a744d43cb1d10e48d4ddca691ba756a62be457dbea0aea77e22d1e162ebc9d3db22349742b6f683584771b12
6
+ metadata.gz: 28592296140fadf98b245fd0efdb62bf9e1c808a4487cd18e8025dcc1daf303cc90466ca0bf21b2c433652b4543265f866d0b83246a1764089be80e48dabb4e6
7
+ data.tar.gz: cae243d8e3af11d86d7de6969442fbbcf5e9c08cdaa0839237ec8a2dd6222da58a57132e3cfa8060daa1385fe0668767aae4223c2b6f0000ba77365ddbfd841f
@@ -0,0 +1,10 @@
1
+ module RelatonIetf
2
+ module Config
3
+ include RelatonBib::Config
4
+ end
5
+ extend Config
6
+
7
+ class Configuration < RelatonBib::Configuration
8
+ PROGNAME = "relaton-ietf".freeze
9
+ end
10
+ end
@@ -13,7 +13,7 @@ module RelatonIetf
13
13
  # @param stream [String, nil]
14
14
  def initialize(**args)
15
15
  if args[:doctype] && !DOCTYPES.include?(args[:doctype])
16
- warn "[relaton-ietf] WARNING: invalid doctype #{args[:doctype]}"
16
+ Util.warn "WARNING: invalid doctype `#{args[:doctype]}`"
17
17
  end
18
18
  @stream = args.delete(:stream)
19
19
  super
@@ -18,13 +18,13 @@ module RelatonIetf
18
18
  # reference is required
19
19
  # @return [RelatonIetf::IetfBibliographicItem] Relaton of reference
20
20
  def get(code, _year = nil, _opts = {})
21
- warn "[relaton-ietf] (\"#{code}\") fetching..."
21
+ Util.warn "(#{code}) fetching..."
22
22
  result = search code
23
23
  if result
24
24
  docid = result.docidentifier.detect(&:primary) || result.docidentifier.first
25
- warn "[relaton-ietf] (\"#{code}\") found #{docid.id}"
25
+ Util.warn "(#{code}) found `#{docid.id}`"
26
26
  else
27
- warn "[relaton-ietf] (\"#{code}\") not found"
27
+ Util.warn "(#{code}) not found"
28
28
  end
29
29
  result
30
30
  end
@@ -0,0 +1,9 @@
1
+ module RelatonIetf
2
+ module Util
3
+ extend RelatonBib::Util
4
+
5
+ def self.logger
6
+ RelatonIetf.configuration.logger
7
+ end
8
+ end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module RelatonIetf
2
- VERSION = "1.16.0".freeze
2
+ VERSION = "1.16.1".freeze
3
3
  end
data/lib/relaton_ietf.rb CHANGED
@@ -4,6 +4,8 @@ require "net/http"
4
4
  require "relaton/index"
5
5
  require "relaton_bib"
6
6
  require "relaton_ietf/version"
7
+ require "relaton_ietf/config"
8
+ require "relaton_ietf/util"
7
9
  require "relaton_ietf/bibxml_parser"
8
10
  require "relaton_ietf/ietf_bibliography"
9
11
  require "relaton_ietf/xml_parser"
@@ -16,9 +18,9 @@ module RelatonIetf
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 RelatonIetf::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-ietf
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-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: relaton-bib
@@ -71,6 +71,7 @@ files:
71
71
  - lib/relaton_ietf.rb
72
72
  - lib/relaton_ietf/bibxml_parser.rb
73
73
  - lib/relaton_ietf/committee.rb
74
+ - lib/relaton_ietf/config.rb
74
75
  - lib/relaton_ietf/data_fetcher.rb
75
76
  - lib/relaton_ietf/hash_converter.rb
76
77
  - lib/relaton_ietf/ietf_bibliographic_item.rb
@@ -80,6 +81,7 @@ files:
80
81
  - lib/relaton_ietf/rfc_entry.rb
81
82
  - lib/relaton_ietf/rfc_index_entry.rb
82
83
  - lib/relaton_ietf/scrapper.rb
84
+ - lib/relaton_ietf/util.rb
83
85
  - lib/relaton_ietf/version.rb
84
86
  - lib/relaton_ietf/xml_parser.rb
85
87
  - relaton_ietf.gemspec