Sha256: 6bc268fbb56bb49670ac889b2e9ed0c91055e254587e3b5ba8c6142f3b14738e
Contents?: true
Size: 728 Bytes
Versions: 6
Compression:
Stored size: 728 Bytes
Contents
module MoneyS3 module Builders class UcPohybType include ParserCore::BaseBuilder def builder root = Ox::Element.new(name) root = add_attributes_and_namespaces(root) root << build_element('Zkrat', data[:zkrat], data[:zkrat_attributes]) if data.key? :zkrat root << build_element('Popis', data[:popis], data[:popis_attributes]) if data.key? :popis root << build_element('Typ', data[:typ], data[:typ_attributes]) if data.key? :typ root << build_element('Sloupec', data[:sloupec], data[:sloupec_attributes]) if data.key? :sloupec root << build_element('Pozn', data[:pozn], data[:pozn_attributes]) if data.key? :pozn root end end end end
Version data entries
6 entries across 6 versions & 1 rubygems