Sha256: 736101fe1db07ca2b28e20cf1f99bde0db25c120f203e9c7633ac5b56a8d959b
Contents?: true
Size: 1.28 KB
Versions: 23
Compression:
Stored size: 1.28 KB
Contents
module RelatonNist class HashConverter < RelatonBib::HashConverter class << self # @override RelatonBib::HashConverter.hash_to_bib # @param args [Hash] # @param nested [TrueClass, FalseClass] # @return [Hash] def hash_to_bib(args) ret = super return if ret.nil? commentperiod_hash_to_bib(ret) ret end private # @param item_hash [Hash] # @return [RelatonNist::NistBibliographicItem] def bib_item(item_hash) NistBibliographicItem.new(**item_hash) end def commentperiod_hash_to_bib(ret) return unless ret[:commentperiod] ret[:commentperiod] = CommentPeriod.new(**ret[:commentperiod]) end # @param ret [Hash] def relations_hash_to_bib(ret) super return unless ret[:relation] ret[:relation] = ret[:relation].map { |r| DocumentRelation.new(**r) } # ret[:relation] = array(ret[:relation]) # ret[:relation]&.each do |r| # if r[:description] # r[:description] = FormattedString.new r[:description] # end # relation_bibitem_hash_to_bib(r) # relation_locality_hash_to_bib(r) # relation_source_locality_hash_to_bib(r) # end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems