Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

best gem for login system [closed]

which is the best gem for creating a login system?

like image 803
Madhusudhan Avatar asked Aug 03 '10 09:08

Madhusudhan


1 Answers

Here is a good comparison of Rails authentication systems.

I went with Devise/Warden - it's working well for me at the moment. Make sure you go with the correct version for your version of Rails - the default Devise version is only for Rails 3, but you can get the Rails 2.x version as well (with gem install devise --version=1.0.8).

like image 110
Skilldrick Avatar answered Sep 19 '22 15:09

Skilldrick