Skip to content

Instantly share code, notes, and snippets.

@nicolasiensen
Created August 6, 2012 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicolasiensen/3274679 to your computer and use it in GitHub Desktop.
Save nicolasiensen/3274679 to your computer and use it in GitHub Desktop.
Export Meu Rio members from Mr. Dash
require "csv"
members = Group.find(1).users
CSV.open("/Users/nicolas/Desktop/members.csv", "wb") do |csv|
csv << ["Nome", "Email"]
members.each do |member|
csv << [member.name, member.email]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment