Sha256: 4a06728762c746bcecd708c63b71d6adc3da278c01405cc1c73823d7c2ba8339
Contents?: true
Size: 932 Bytes
Versions: 1
Compression:
Stored size: 932 Bytes
Contents
# frozen_string_literal: true module NistBib # Hit. class Hit # @return [NistBib::HitCollection] attr_reader :hit_collection # @return [Array<Hash>] attr_reader :hit # @param hit [Hash] # @param hit_collection [NistBib:HitCollection] def initialize(hit, hit_collection = nil) @hit = hit @hit_collection = hit_collection end # Parse page. # @return [NistBib::NistBliographicItem] def fetch @fetch ||= Scrapper.parse_page @hit end # @return [String] def to_s inspect end # @return [String] def inspect "<#{self.class}:#{format('%#.14x', object_id << 1)} "\ "@text=\"#{@hit_collection&.text}\" "\ "@fetched=\"#{!@fetch.nil?}\" "\ "@fullIdentifier=\"#{@fetch&.shortref(nil)}\" "\ "@title=\"#{@hit[:code]}\">" end # @return [String] def to_xml fetch.to_xml end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nistbib-0.1.5 | lib/nistbib/hit.rb |