views:

48

answers:

3

which is the best gem for creating a login system?

+3  A: 

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).

Skilldrick
hey thanks... i will try Devise ...
Madhusudhan
+1 for devise, good community/support
David Lyod
+1  A: 

I tryed many and authlogic is imho the best http://rdoc.info/projects/binarylogic/authlogic Very rich featured and easy to use.

Dennis
authlogic is good! thank you...
Madhusudhan
A: 

Clearance works well for me. Easy implementation and very little fuss.

I'd also give Devise/Warden a +1. Very powerful.

Elxx