Reputation: 9168
Which authentication plugin for Rails would you choose? I'm not interested in the permissions, roles and other authorization stuff.
I'm interested in the:
I'm looking for something similar to the Java Spring Security (formerly Acegi) but for Rails platform.
Kind regards.
Upvotes: 3
Views: 206
Reputation: 5403
Check out Authlogic. It's incredibly flexible and simple to get started.
Other options:
Devise (Rack-based)
Upvotes: 4
Reputation: 176372
Ruby Toolbox provides a nice list of Rails Authentication plugins.
I used restful_authentication
in the past but I switched to authlogic
1 year ago.
Authlogic is an excellent and high customizable plugin, there are also additional third party plugins to support OpenID and Facebook logins.
I heard good words about Clearance but I never used it.
Upvotes: 1