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 +4 -4
- data/lib/relaton_xsf/bibliography.rb +3 -3
- data/lib/relaton_xsf/config.rb +10 -0
- data/lib/relaton_xsf/data_fetcher.rb +4 -4
- data/lib/relaton_xsf/util.rb +9 -0
- data/lib/relaton_xsf/version.rb +1 -1
- data/lib/relaton_xsf.rb +2 -0
- metadata +4 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 6dfec87ce4230c11a74b0d3bb28fb0b8935d3647a5e592df6fdbde69ab1d21b8
         | 
| 4 | 
            +
              data.tar.gz: 1dc23f525f5b3db29fc8f204c70b0004137d0bbb8a068e593b21c180ff247dad
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 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 " | 
| 10 | 
            +
                  Util.warn "(#{code}) fetching..."
         | 
| 11 11 | 
             
                  result = search(code)
         | 
| 12 12 | 
             
                  if result.empty?
         | 
| 13 | 
            -
                    warn " | 
| 13 | 
            +
                    Util.warn "(#{code}) nothing found"
         | 
| 14 14 | 
             
                    return
         | 
| 15 15 | 
             
                  end
         | 
| 16 16 |  | 
| 17 17 | 
             
                  bib = result.first.fetch
         | 
| 18 | 
            -
                  warn " | 
| 18 | 
            +
                  Util.warn "(#{code}) found `#{bib.docidentifier.first.id}`"
         | 
| 19 19 | 
             
                  bib
         | 
| 20 20 | 
             
                end
         | 
| 21 21 | 
             
              end
         | 
| @@ -10,14 +10,14 @@ module RelatonXsf | |
| 10 10 | 
             
                end
         | 
| 11 11 |  | 
| 12 12 | 
             
                def self.fetch(output: "data", format: "yaml")
         | 
| 13 | 
            -
                  warn " | 
| 13 | 
            +
                  warn "fetching data to #{output} in #{format} format"
         | 
| 14 14 | 
             
                  t1 = Time.now
         | 
| 15 | 
            -
                  warn " | 
| 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 " | 
| 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 " | 
| 42 | 
            +
                    warn "WARNING: #{file} already exists"
         | 
| 43 43 | 
             
                  end
         | 
| 44 44 | 
             
                  File.write file, serialize(bib), encoding: "UTF-8"
         | 
| 45 45 | 
             
                  @files << file
         | 
    
        data/lib/relaton_xsf/version.rb
    CHANGED
    
    
    
        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. | 
| 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- | 
| 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
         |