Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best ruby on rails login and authentication plugin

the restful authentication plugin does appear to be broken with rails (2.3.4) [name error and yes I know about the bug that is on hold]. Is their a better plugin/gem?

like image 798
Gregg Avatar asked Nov 28 '22 11:11

Gregg


2 Answers

I think most of developers will agree right now, authlogic is the best authentication plugin.

For authorization, I do personnaly really like acl9 which perfectly integrates with authlogic.

like image 60
Damien MATHIEU Avatar answered Apr 29 '23 07:04

Damien MATHIEU


A fairly new entry in this area is devise which is based on warden, a rack-based authentication solution.

You can see the popularity of the various plugins over at ruby toolbox.

like image 28
Roland Avatar answered Apr 29 '23 08:04

Roland