Skip to content

Instantly share code, notes, and snippets.

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