Skip to content

Instantly share code, notes, and snippets.

@dipil-saud
Created October 31, 2011 13:40
Show Gist options
  • Save dipil-saud/1327507 to your computer and use it in GitHub Desktop.
Save dipil-saud/1327507 to your computer and use it in GitHub Desktop.
Rails Misc
e.g.
send_file "#{Rails.root}/tmp/#{file}", :sendfile => true, :type => 'text/csv'
# === To a File
#
# CSV.open("path/to/file.csv", "wb") do |csv|
# csv << ["row", "of", "CSV", "data"]
# csv << ["another", "row"]
# # ...
# end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment