Sha256: b90428bb6c37936f9a41bcd44610127d49511a94337819fa50ab809052c9039d
Contents?: true
Size: 738 Bytes
Versions: 12
Compression:
Stored size: 738 Bytes
Contents
module RelatonIeee class HashConverter < RelatonBib::HashConverter class << self # @param args [Hash] # @param neated [TrueClas, FalseClass] default true # @return [Hash] def hash_to_bib(args, nested = false) hash = super return nil unless hash.is_a?(Hash) committee_hash_to_bib hash hash end # @param item_hash [Hash] # @return [RelatonIeee::IeeeBibliographicItem] def bib_item(item_hash) IeeeBibliographicItem.new item_hash end # @param hash [Hash] def committee_hash_to_bib(hash) return unless hash[:committee] hash[:committee] = hash[:committee].map { |c| Committee.new c } end end end end
Version data entries
12 entries across 12 versions & 2 rubygems