Displaying 1 result from an estimated 1 matches for "n13th".
Did you mean:
  13th
  
2006 Apr 11
4
Vpim::Vcard Line Breaks
...|
  maker.add_name do |name|
    name.prefix = ''Dr.''
    name.given = ''Jimmy''
    name.family = ''Death''
  end
  maker.add_addr do |addr|
    addr.preferred = true
    addr.location = ''work''
    addr.street = "12 Last Row,\n13th Section"
    addr.locality = ''City of Lost Children''
    addr.country = ''Cinema''
  end
end
puts card
card = Vpim::Vcard.decode(card.to_s).first
puts "---"
puts card.address.street
puts "---"
% ruby -I ../lib -w ex_multiline.rb
BEGIN:V...