Well for starters you could use an authentication solution like Devise. Or, you could create your own solution like so:
https://gist.github.com/1986547 This is just a simple custom solution I created. I also went back and built my own image verification system and tied it into this custom solution. But, I provided you the basics for handling authentication. In my DB schema, my password field is called :password_digest. You could feasibly name your password field in your DB to anything you wanted. You just have to edit the methods I provided in the gist. I also copied much of this initial code right from Rails when I first started using Bcrypt. I hope that helps get you started. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

