Class: MoneyS3::Builders::SeznamVyrobka

Inherits:
Object
  • Object
show all
Includes:
ParserCore::BaseBuilder
Defined in:
lib/money_s3/builders/seznam_vyrobka.rb

Instance Method Summary collapse

Instance Method Details

#builderObject



6
7
8
9
10
11
12
13
14
15
# File 'lib/money_s3/builders/seznam_vyrobka.rb', line 6

def builder
  root = Ox::Element.new(name)
  root = add_attributes_and_namespaces(root)

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

  root
end