class RelatonIana::Processor
Attributes
idtype[R]
Public Class Methods
new()
click to toggle source
# File lib/relaton_iana/processor.rb, line 7 def initialize # rubocop:disable Lint/MissingSuper @short = :relaton_iana @prefix = "IANA" @defaultprefix = %r{^IANA\s} @idtype = "IANA" @datasets = %w[iana-registries] end
Public Instance Methods
fetch_data(_source, opts)
click to toggle source
Fetch all the documents from github.com/ietf-ribose/iana-registries
@param [String] _source source name @param [Hash] opts @option opts [String] :output directory to output documents @option opts [String] :format
# File lib/relaton_iana/processor.rb, line 31 def fetch_data(_source, opts) DataFetcher.fetch(**opts) end
from_xml(xml)
click to toggle source
@param xml [String] @return [RelatonBib::BibliographicItem]
# File lib/relaton_iana/processor.rb, line 37 def from_xml(xml) ::RelatonBib::XMLParser.from_xml xml end
get(code, date, opts)
click to toggle source
@param code [String] @param date [String, NilClass] year @param opts [Hash] @return [RelatonBib::BibliographicItem]
# File lib/relaton_iana/processor.rb, line 19 def get(code, date, opts) ::RelatonIana::IanaBibliography.get(code, date, opts) end
grammar_hash()
click to toggle source
Returns hash of XML grammar @return [String]
# File lib/relaton_iana/processor.rb, line 50 def grammar_hash @grammar_hash ||= ::RelatonIana.grammar_hash end
hash_to_bib(hash)
click to toggle source
@param hash [Hash] @return [RelatonIana::BibliographicItem]
# File lib/relaton_iana/processor.rb, line 43 def hash_to_bib(hash) item_hash = ::RelatonBib::HashConverter.hash_to_bib(hash) ::RelatonWBib::BibliographicItem.new(**item_hash) end