# === ContactCsv
#
# ==== Reading in CSV
#
# The two class methods are used to read in a CSV file of contacts exported by email clients such as Outlook or GMail. Both methods return an Array of Contact objects.
#
# contacts = ContactCSV.read('/path/to/file.csv')
#
# contacts = ContactCSV.parse('csv,data,string')
#
# ==== Getting the contacts
#
# contacts.each do |contact|
# puts contact.name
# puts contact.email
# end
#
# See the Contact class for a complete list of attributes.
#
#