relaton-ogc 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: 87da152cca057f42adce0f783be7106960e30ef3f4360fb00c06c15d9c5ace18
4
- data.tar.gz: 6905a639a052950556325baca635bb9a124bc660b55711d50969d707f1c6ff0c
3
+ metadata.gz: 152c757b6f64d56ff90726fea30e01bbbb3d9314e1d7a1227ef8eb37f60a62c9
4
+ data.tar.gz: 7440398d287b9db7afc8a18f7ccb22eff2c4628ea947b2ae8e88a732c527a807
5
5
  SHA512:
6
- metadata.gz: 7d1e6ec43cc8c8b5277ecff697dd8dff43d1b381a3b932844ab0194c0ab55e3fa5d472c62f030c09a7c8b3b97d186b1ed9f7252438fcd01bc7b61a9e3adb6254
7
- data.tar.gz: b7156ad6f5237cd742097146dfa620de9e8a030c4bb2e4a7e71d9eacc1b6f301be44ad134950fcbe7555e0df8655ff5d56d91e6e69a1ccaaf7a11067387ca3c6
6
+ metadata.gz: cdae3988f8c6baf95a5d961b226b1f2f6fd30656b0a5db1e2763f07f0943e5797ed44e269a8a6192763fbd25d3569524dde5c4930ebeab289021825ac8a7e283
7
+ data.tar.gz: 35483c4022a25d73fdfa8a5ee10eb136fce36192acc943fb7c98621f15d8abcf50014fd035135c65ea54dfe24e0b6e02fc990530017acc074f07da02734bfb9e
@@ -0,0 +1,10 @@
1
+ module RelatonOgc
2
+ module Config
3
+ include RelatonBib::Config
4
+ end
5
+ extend Config
6
+
7
+ class Configuration < RelatonBib::Configuration
8
+ PROGNAME = "relaton-ogc".freeze
9
+ end
10
+ end
@@ -0,0 +1,9 @@
1
+ module RelatonOgc
2
+ module Util
3
+ extend RelatonBib::Util
4
+
5
+ def self.logger
6
+ RelatonOgc.configuration.logger
7
+ end
8
+ end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module RelatonOgc
2
- VERSION = "1.16.0".freeze
2
+ VERSION = "1.16.1".freeze
3
3
  end
data/lib/relaton_ogc.rb CHANGED
@@ -1,6 +1,8 @@
1
1
  require "relaton/index"
2
2
  require "relaton_iso_bib"
3
3
  require "relaton_ogc/version"
4
+ require "relaton_ogc/config"
5
+ require "relaton_ogc/util"
4
6
  require "relaton_ogc/ogc_bibliographic_item"
5
7
  require "relaton_ogc/ogc_bibliography"
6
8
  require "relaton_ogc/data_fetcher"
@@ -17,9 +19,9 @@ module RelatonOgc
17
19
  # Returns hash of XML reammar
18
20
  # @return [String]
19
21
  def self.grammar_hash
20
- gem_path = File.expand_path "..", __dir__
21
- grammars_path = File.join gem_path, "grammars", "*"
22
- grammars = Dir[grammars_path].sort.map { |gp| File.read gp }.join
23
- Digest::MD5.hexdigest grammars
22
+ # gem_path = File.expand_path "..", __dir__
23
+ # grammars_path = File.join gem_path, "grammars", "*"
24
+ # grammars = Dir[grammars_path].sort.map { |gp| File.read gp }.join
25
+ Digest::MD5.hexdigest RelatonOgc::VERSION + RelatonIsoBib::VERSION + RelatonBib::VERSION # grammars
24
26
  end
25
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-ogc
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: faraday
@@ -78,6 +78,7 @@ files:
78
78
  - grammars/relaton-ogc-compile.rng
79
79
  - grammars/relaton-ogc.rng
80
80
  - lib/relaton_ogc.rb
81
+ - lib/relaton_ogc/config.rb
81
82
  - lib/relaton_ogc/data_fetcher.rb
82
83
  - lib/relaton_ogc/editorial_group.rb
83
84
  - lib/relaton_ogc/hash_converter.rb
@@ -87,6 +88,7 @@ files:
87
88
  - lib/relaton_ogc/ogc_bibliography.rb
88
89
  - lib/relaton_ogc/processor.rb
89
90
  - lib/relaton_ogc/scrapper.rb
91
+ - lib/relaton_ogc/util.rb
90
92
  - lib/relaton_ogc/version.rb
91
93
  - lib/relaton_ogc/xml_parser.rb
92
94
  - relaton_ogc.gemspec