Skip to content

Instantly share code, notes, and snippets.

@jbfink
Created May 3, 2011 14:12
Show Gist options
  • Save jbfink/953397 to your computer and use it in GitHub Desktop.
Save jbfink/953397 to your computer and use it in GitHub Desktop.
putting out emails from eventbrite csv
#this one worked!
require 'csv'
CSV.open('/tmp/orders.csv', 'r', ',') do |row|
File.open('/tmp/orders.txt', 'a') do |write|
write.puts row[-2]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment