Skip to content

Instantly share code, notes, and snippets.

@emiltin
Created April 18, 2010 19:36
Show Gist options
  • Save emiltin/370500 to your computer and use it in GitHub Desktop.
Save emiltin/370500 to your computer and use it in GitHub Desktop.
"Bob,Johnson,bob@johnson.com
Anna,Straydon,anna@balbal.com".lines do |line|
u=line.split ','
pw = 'test'
p( {:first=>u[0], :last=>u[1], :email=>u[2], :password=>pw, :password_confirmation=>pw } )
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment