Skip to content

Instantly share code, notes, and snippets.

@ammaaim
Created November 12, 2014 13:36
Show Gist options
  • Save ammaaim/3dc62f33ee05f23a2fcb to your computer and use it in GitHub Desktop.
Save ammaaim/3dc62f33ee05f23a2fcb to your computer and use it in GitHub Desktop.
ruby import model data from csv
require 'csv'
csv_text = File.read('filename.csv')
csv = CSV.parse(csv_text, :headers => true)
csv.each do |row|
Model.create!(row.to_hash)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment