I poked around StackOverflow and Google, but couldn't find anyone who has put together a comparison of authentication gems or plugins for Rails (I'm looking for something for Rails 3). What authentication solutions are available for Rails 3, which are most popular, and what are the differences between them?

link|improve this question

feedback

5 Answers

up vote 29 down vote accepted

Ruby toolbox has a list of the most popular ones: http://ruby-toolbox.com/categories/rails_authentication.html

You can see that Devise and Authlogic are definitely the most popular.

Personally I use Devise. It works well with Rails 3, is easily customizable, and makes it very easy to integrate Twitter and Facebook based auth.

link|improve this answer
One of the most important for me was openID based auth systems. Great answer :) – Abe Petrillo Aug 24 '11 at 23:46
Good answer. Sorcery is another excellent library that's a little newer on the scene. – Andrew Apr 22 at 23:11
feedback

For a Rails3 App definitely Devise ;). Devise is the only authentication system which provides security on all the 3 stack layers of rails: - In 'M', 'v', and 'C' and hence the best to go with. But you got to learn more on how to customize devise to custom fit your application's need. You can find help on customizing in this page https://github.com/plataformatec/devise/wiki/_pages

link|improve this answer
feedback

In Rails authentication from scratch is dead simple to do. Ryan Bates covers this here http://railscasts.com/episodes/270-authentication-in-rails-3-1

link|improve this answer
feedback

devise, devise, devise

link|improve this answer
feedback

I'm a big proponent of rolling your own. Depending on your requirements its fairly straight-forward and reduced dependency on a key component. Rails 3.1 makes it even easier.

link|improve this answer
It seems to me an authentication library would be the last place you'd want to trust yourself to roll your own. – jrdioko Jul 16 '11 at 22:56
authentication != encryption. I don't trust myself to do anything with encryption, but the basics of authentication are very simple. Rails 3.1 even includes built-ins now for helping with the salt. The other way to look at it is, if its important enough to protect, who do you turst to protect it? There's are definitely times when an already used library works, and I think Devise is a great one. – loneaggie Jul 16 '11 at 23:34
2  
Also you have a wider community to debug the code if a weakness is found. Me vs All Hackers or Me+opensource awesomeness vs Hackers – Abe Petrillo Aug 24 '11 at 23:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.