Class: RelatonUn::Processor
- Inherits:
-
Relaton::Processor
- Object
- Relaton::Processor
- RelatonUn::Processor
- Defined in:
- lib/relaton_un/processor.rb
Instance Attribute Summary collapse
-
#idtype ⇒ Object
readonly
Returns the value of attribute idtype.
Instance Method Summary collapse
- #from_xml(xml) ⇒ RelatonUn::UnBibliographicItem
- #get(code, date, opts) ⇒ RelatonUn::UnBibliographicItem
-
#grammar_hash ⇒ String
Returns hash of XML grammar.
- #hash_to_bib(hash) ⇒ RelatonUn::UnBibliographicItem
-
#initialize ⇒ Processor
constructor
A new instance of Processor.
Constructor Details
#initialize ⇒ Processor
Returns a new instance of Processor.
7 8 9 10 11 12 |
# File 'lib/relaton_un/processor.rb', line 7 def initialize @short = :relaton_un @prefix = "UN" @defaultprefix = %r{^UN\s} @idtype = "UN" end |
Instance Attribute Details
#idtype ⇒ Object (readonly)
Returns the value of attribute idtype.
5 6 7 |
# File 'lib/relaton_un/processor.rb', line 5 def idtype @idtype end |
Instance Method Details
#from_xml(xml) ⇒ RelatonUn::UnBibliographicItem
24 25 26 |
# File 'lib/relaton_un/processor.rb', line 24 def from_xml(xml) ::RelatonUn::XMLParser.from_xml xml end |
#get(code, date, opts) ⇒ RelatonUn::UnBibliographicItem
18 19 20 |
# File 'lib/relaton_un/processor.rb', line 18 def get(code, date, opts) # ::RelatonUn::UnBibliography.get(code, date, opts) end |
#grammar_hash ⇒ String
Returns hash of XML grammar
37 38 39 |
# File 'lib/relaton_un/processor.rb', line 37 def grammar_hash @grammar_hash ||= ::RelatonUn.grammar_hash end |
#hash_to_bib(hash) ⇒ RelatonUn::UnBibliographicItem
30 31 32 33 |
# File 'lib/relaton_un/processor.rb', line 30 def hash_to_bib(hash) item_hash = ::RelatonUn::HashConverter.hash_to_bib(hash) ::RelatonUn::UnBibliographicItem.new(**item_hash) end |