Skip to content

Instantly share code, notes, and snippets.

@secretfader
Created December 10, 2009 10:25
Show Gist options
  • Save secretfader/253258 to your computer and use it in GitHub Desktop.
Save secretfader/253258 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'fastercsv'
FasterCSV.open("email_final.csv", "w") do |csv|
FasterCSV.foreach("validated.csv") do |row|
csv << [row[0], "#{row[1]} #{row[2]}"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment