Skip to content

Instantly share code, notes, and snippets.

@wuzzzzaah
Created August 12, 2015 08:26
Show Gist options
  • Save wuzzzzaah/b450cf14194c155764b4 to your computer and use it in GitHub Desktop.
Save wuzzzzaah/b450cf14194c155764b4 to your computer and use it in GitHub Desktop.
CSV exporting shit - Rails
require 'csv'
CSV.open("file_name.csv", "w") do |csv|
csv << Model_name.attribute_names
#any ar collection
ar_collection.each do |record|
csv << record.attributes.values
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment