Skip to content

Instantly share code, notes, and snippets.

@JFickel
Created August 30, 2012 06:30
Show Gist options
  • Save JFickel/3523317 to your computer and use it in GitHub Desktop.
Save JFickel/3523317 to your computer and use it in GitHub Desktop.
colleges.rake
require 'csv'
desc "Import colleges from csv file"
task :colleges => [:environment] do
file = "db/colleges.csv"
CSV.foreach(file, :headers => true) do |row|
Restaurant.create({
:name => row[1]
})
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment