relaton-xsf 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: fe5cc353b006408b5d731676a2fb02d2f1f2219a6feed3be8a8308b34c9e73eb
4
- data.tar.gz: 73d3adc0ec8f9f2841617607bc1e10f441f1256453823984a48d2f4dc9506e0f
3
+ metadata.gz: 6dfec87ce4230c11a74b0d3bb28fb0b8935d3647a5e592df6fdbde69ab1d21b8
4
+ data.tar.gz: 1dc23f525f5b3db29fc8f204c70b0004137d0bbb8a068e593b21c180ff247dad
5
5
  SHA512:
6
- metadata.gz: acdb761f00b9aae166d1999275fea1926dbcd630fc9a74ee034a74e63a8af26158d3b718f7e5378d080c1f5e92b8d4a1942ac0621ca3fdd751579c2ab24272de
7
- data.tar.gz: 19a10e670fb7ca7d24cd47ad940bf99ccc1638db0d975b8619440dcb6ead02a6a83156739d879731b0aafe05179063e814a59c1d8a584ec19704dd0f874fc3e0
6
+ metadata.gz: 3840a380510a58f446e7ab472edab7ed66e068f1c89d7d3b9384163b56911a6704d0e877b9e193bc9ef561b257a2ec2e73c25ed6fed6083bbe108b30f905adfb
7
+ data.tar.gz: 23edee3f853f30bf832521e6208313e7aa2888e8ec786299ff80b890b1e89a0d3d25d749f5f9b21b94a3c4e2253fda0282a008688cff8e5c1b290e4cb8ce6d57
@@ -7,15 +7,15 @@ module RelatonXsf
7
7
  end
8
8
 
9
9
  def get(code, _year = nil, _opts = {})
10
- warn "[relaton-xsf] (#{code}) fetching..."
10
+ Util.warn "(#{code}) fetching..."
11
11
  result = search(code)
12
12
  if result.empty?
13
- warn "[relaton-xsf] (#{code}) nothing found"
13
+ Util.warn "(#{code}) nothing found"
14
14
  return
15
15
  end
16
16
 
17
17
  bib = result.first.fetch
18
- warn "[relaton-xsf] (#{code}) found #{bib.docidentifier.first.id}"
18
+ Util.warn "(#{code}) found `#{bib.docidentifier.first.id}`"
19
19
  bib
20
20
  end
21
21
  end
@@ -0,0 +1,10 @@
1
+ module RelatonXsf
2
+ module Config
3
+ include RelatonBib::Config
4
+ end
5
+ extend Config
6
+
7
+ class Configuration < RelatonBib::Configuration
8
+ PROGNAME = "relaton-xsf".freeze
9
+ end
10
+ end
@@ -10,14 +10,14 @@ module RelatonXsf
10
10
  end
11
11
 
12
12
  def self.fetch(output: "data", format: "yaml")
13
- warn "[relaton-xsf] fetching data to #{output} in #{format} format"
13
+ warn "fetching data to #{output} in #{format} format"
14
14
  t1 = Time.now
15
- warn "[relaton-xsf] start at #{t1}"
15
+ warn "start at #{t1}"
16
16
  FileUtils.mkdir_p output
17
17
  new(output, format).fetch
18
18
  t2 = Time.now
19
19
  t = t2 - t1
20
- warn "[relaton-xsf] finished at #{t2} (#{t.round} seconds)"
20
+ warn "finished at #{t2} (#{t.round} seconds)"
21
21
  end
22
22
 
23
23
  def index
@@ -39,7 +39,7 @@ module RelatonXsf
39
39
  id = bib.docidentifier.find(&:primary).id
40
40
  file = File.join @output, "#{id.gsub(' ', '-').downcase}.#{@ext}"
41
41
  if @files.include? file
42
- warn "[relaton-xsf] WARNING: #{file} already exists"
42
+ warn "WARNING: #{file} already exists"
43
43
  end
44
44
  File.write file, serialize(bib), encoding: "UTF-8"
45
45
  @files << file
@@ -0,0 +1,9 @@
1
+ module RelatonXsf
2
+ module Util
3
+ extend RelatonBib::Util
4
+
5
+ def self.logger
6
+ RelatonXsf.configuration.logger
7
+ end
8
+ end
9
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RelatonXsf
4
- VERSION = "1.16.0"
4
+ VERSION = "1.16.1"
5
5
  end
data/lib/relaton_xsf.rb CHANGED
@@ -4,6 +4,8 @@ require "mechanize"
4
4
  require "relaton/index"
5
5
  require "relaton_bib"
6
6
  require_relative "relaton_xsf/version"
7
+ require_relative "relaton_xsf/config"
8
+ require_relative "relaton_xsf/util"
7
9
  require_relative "relaton_xsf/bibliographic_item"
8
10
  require_relative "relaton_xsf/bibliography"
9
11
  require_relative "relaton_xsf/hit_collection"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-xsf
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: mechanize
@@ -70,11 +70,13 @@ files:
70
70
  - lib/relaton_xsf/bibliographic_item.rb
71
71
  - lib/relaton_xsf/bibliography.rb
72
72
  - lib/relaton_xsf/bibxml_parser.rb
73
+ - lib/relaton_xsf/config.rb
73
74
  - lib/relaton_xsf/data_fetcher.rb
74
75
  - lib/relaton_xsf/hash_converter.rb
75
76
  - lib/relaton_xsf/hit.rb
76
77
  - lib/relaton_xsf/hit_collection.rb
77
78
  - lib/relaton_xsf/processor.rb
79
+ - lib/relaton_xsf/util.rb
78
80
  - lib/relaton_xsf/version.rb
79
81
  - lib/relaton_xsf/xml_parser.rb
80
82
  - sig/relaton_xsf.rbs