Skip to content

Instantly share code, notes, and snippets.

@atinypixel
Created May 14, 2009 23:14
Show Gist options
  • Save atinypixel/111978 to your computer and use it in GitHub Desktop.
Save atinypixel/111978 to your computer and use it in GitHub Desktop.
require 'csv'
CSV.open('sample_users.csv', 'r').each do |row|
User.create(:username => row[0], :email => row[1])
end
kevin kevin@gmail.com
Jhon jhon@gmail.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment