Skip to content

Instantly share code, notes, and snippets.

@xirukitepe
Created May 21, 2013 07:45
Show Gist options
  • Save xirukitepe/5618151 to your computer and use it in GitHub Desktop.
Save xirukitepe/5618151 to your computer and use it in GitHub Desktop.
import data from a CSV file
require 'csv'
desc "Imports a CSV file into local or production database"
task :import, [:filename] => :environment do
CSV.foreach('public/cats.csv', :headers => true) do |row|
Category.find_or_create_by_description(row.to_hash)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment