I have a ruby app and I am using "Authlogic" for user authentication. Users can register and sign-in no problem.
Now I have a csv file into which I have a list of user details which I have to migrate those details to the "users" table. For that I have written a script which goes through the csv file and store the data into "users" table.
The problem is I can't find a way to generate the values for the following fields :
crypted_password password_salt persistence_token
needed by authlogic to work.
Any help?