Class: RelatonItu::Hit
- Inherits:
-
Object
- Object
- RelatonItu::Hit
- Defined in:
- lib/relaton_itu/hit.rb
Overview
Hit.
Instance Attribute Summary collapse
- #hit ⇒ Array<Hash> readonly
- #hit_collection ⇒ Isobib::HitCollection readonly
Instance Method Summary collapse
-
#fetch ⇒ Isobib::IsoBibliographicItem
Parse page.
-
#initialize(hit, hit_collection = nil) ⇒ Hit
constructor
A new instance of Hit.
- #inspect ⇒ String
- #to_s ⇒ String
- #to_xml(opts = {}) ⇒ String
Constructor Details
#initialize(hit, hit_collection = nil) ⇒ Hit
Returns a new instance of Hit.
14 15 16 17 |
# File 'lib/relaton_itu/hit.rb', line 14 def initialize(hit, hit_collection = nil) @hit = hit @hit_collection = hit_collection end |
Instance Attribute Details
#hit ⇒ Array<Hash> (readonly)
10 11 12 |
# File 'lib/relaton_itu/hit.rb', line 10 def hit @hit end |
#hit_collection ⇒ Isobib::HitCollection (readonly)
7 8 9 |
# File 'lib/relaton_itu/hit.rb', line 7 def hit_collection @hit_collection end |
Instance Method Details
#fetch ⇒ Isobib::IsoBibliographicItem
Parse page.
21 22 23 |
# File 'lib/relaton_itu/hit.rb', line 21 def fetch @fetch ||= Scrapper.parse_page @hit end |
#inspect ⇒ String
31 32 33 34 35 36 37 |
# File 'lib/relaton_itu/hit.rb', line 31 def inspect "<#{self.class}:#{format('%#.14x', object_id << 1)} "\ "@text=\"#{@hit_collection&.text}\" "\ "@fetched=\"#{!@fetch.nil?}\" "\ "@fullIdentifier=\"#{@fetch&.shortref(nil)}\" "\ "@title=\"#{@hit[:code]}\">" end |
#to_s ⇒ String
26 27 28 |
# File 'lib/relaton_itu/hit.rb', line 26 def to_s inspect end |
#to_xml(opts = {}) ⇒ String
40 41 42 43 44 45 46 47 48 49 |
# File 'lib/relaton_itu/hit.rb', line 40 def to_xml(opts = {}) #if builder #fetch.to_xml builder, opts #else builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml| fetch.to_xml xml, opts end builder.doc.root.to_xml #end end |