Henryk Konsek
Henryk Konsek

Reputation: 9168

User authentication support for Rails, NOT authorization

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

Answers (2)

bensie
bensie

Reputation: 5403

Check out Authlogic. It's incredibly flexible and simple to get started.

Other options:

Clearance

Devise (Rack-based)

Upvotes: 4

Simone Carletti
Simone Carletti

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

Related Questions