Sha256: 507f9edfce150f53674f7dddcd5a07f145c9f30b101a0d249badc999afc1e21f
Contents?: true
Size: 1.1 KB
Versions: 7
Compression:
Stored size: 1.1 KB
Contents
module MoneyS3 module Parsers class PracPomer include ParserCore::BaseParser def zkrat at 'Zkrat' end def zkrat_attributes attributes_at 'Zkrat' end def popis at 'Popis' end def popis_attributes attributes_at 'Popis' end def eldp_kod at 'ELDPKod' end def eldp_kod_attributes attributes_at 'ELDPKod' end def pozn at 'Pozn' end def pozn_attributes attributes_at 'Pozn' end def to_h hash = {} hash[:attributes] = attributes hash[:zkrat] = zkrat if has? 'Zkrat' hash[:zkrat_attributes] = zkrat_attributes if has? 'Zkrat' hash[:popis] = popis if has? 'Popis' hash[:popis_attributes] = popis_attributes if has? 'Popis' hash[:eldp_kod] = eldp_kod if has? 'ELDPKod' hash[:eldp_kod_attributes] = eldp_kod_attributes if has? 'ELDPKod' hash[:pozn] = pozn if has? 'Pozn' hash[:pozn_attributes] = pozn_attributes if has? 'Pozn' hash end end end end
Version data entries
7 entries across 7 versions & 1 rubygems