Skip to content

Instantly share code, notes, and snippets.

@manojmj92
Last active January 23, 2019 07:30
Show Gist options
  • Save manojmj92/edfc811371cf6e80e252d34def1bd3a4 to your computer and use it in GitHub Desktop.
Save manojmj92/edfc811371cf6e80e252d34def1bd3a4 to your computer and use it in GitHub Desktop.
def generate_csv(column_names, records)
Enumerator.new do |csv|
csv << column_names.to_csv # add headers to the CSV
records.each do |record|
csv << record.attributes.values_at(*column_names).to_csv
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment