Skip to content

Instantly share code, notes, and snippets.

@excid3
Created January 22, 2016 19:38
Show Gist options
  • Save excid3/5be09dc5f56daedf01b1 to your computer and use it in GitHub Desktop.
Save excid3/5be09dc5f56daedf01b1 to your computer and use it in GitHub Desktop.
# winners.each { |stop, list|
# CSV.open("#{Rails.root}/lib/assets/group_#{stop}.csv", "wb") do |csv|
# list.each { |user|
# csv << [user.email, user.referrals.count]
# }
# end
# }
# change the above to something like this
winners.each { |stop, list|
puts "WINNERS FOR #{stop} \n"
list.each { |user|
puts "#{user.email}, #{user.referrals.count}"
}
puts
puts
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment