Sha256: 47272f1abcc8ae53dd2c565bc72204954877ad41a81836f48452fd6fbd5a6aa1

Contents?: true

Size: 490 Bytes

Versions: 5

Compression:

Stored size: 490 Bytes

Contents

require 'money_s3/builders/base_builder'
require 'money_s3/builders/int_dokl'

module MoneyS3
  module Builders
    class SeznamIntDokl
      include BaseBuilder

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

        if data.key? :int_dokl
          data[:int_dokl].each { |i| root << IntDokl.new('IntDokl', i).builder }
        end

        root
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
money_s3-0.10.0 lib/money_s3/builders/seznam_int_dokl.rb
money_s3-0.9.0 lib/money_s3/builders/seznam_int_dokl.rb
money_s3-0.8.0 lib/money_s3/builders/seznam_int_dokl.rb
money_s3-0.7.0 lib/money_s3/builders/seznam_int_dokl.rb
money_s3-0.6.0 lib/money_s3/builders/seznam_int_dokl.rb