I am currently building a system at work and one of its required features is user authentication. I used restful_authentication in a previous personal project, but last week, I just found out a new simpler user authentication system in railscasts.com called AuthLogic. I tried to integrate it to my project only to encounter another problem. It fails to validate password confirmation form field. Here’s the screenshot to that at twitpic.com.
So, can you suggest a nicer user authentication system in ROR? Please share!
Tags: Ruby on Rails, Web development

If using OpenID is an option, you could try the open_id_authentication plugin. I use it in two projects without any problems.
However, so far I don’t have any experience with username/password-based authentication with Rails, so I can’t recommend a solution for that :|
@Daniel,
Thanks for sharing. I will try that. :)
But I really need a username/password authentication for the system I am building. So, openid is out of the scene.