Sha256: 1cf3a4f2c538dbd463f42862cf95c6359bc76b3da75acf85bc4aed9e617b7cc7

Contents?: true

Size: 371 Bytes

Versions: 2

Compression:

Stored size: 371 Bytes

Contents

module MoneyS3
  module Builders
    class Vyrobka < SklDoklType
      include ParserCore::BaseBuilder

      def builder
        root = Ox::Element.new(name)
        if data.respond_to? :attributes
          data.attributes.each { |k, v| root[k] = v }
        end

        super.nodes.each do |n|
          root << n
        end

        root
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
money_s3-0.12.0 lib/money_s3/builders/vyrobka.rb
money_s3-0.11.0 lib/money_s3/builders/vyrobka.rb