Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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:

  • user model/controllers generation
  • predefined components to support various ways of authentication (HTML form, OpenID) with various back-end (database, LDAP, textfile).

I'm looking for something similar to the Java Spring Security (formerly Acegi) but for Rails platform.

Kind regards.

like image 589
Henryk Konsek Avatar asked Dec 06 '25 18:12

Henryk Konsek


1 Answers

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

Other options:

Clearance

Devise (Rack-based)

like image 64
bensie Avatar answered Dec 08 '25 13:12

bensie