Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Authorization plugins for RoR with Rails 3 support [closed]

Please name RoR authorization plugins with Rails 3 support, which you think is the best.

like image 934
Alexey Zakharov Avatar asked Aug 28 '10 08:08

Alexey Zakharov


1 Answers

Do you need an Authorization or Authentication plugin? It seems that everyone is giving you Authentication plugin.

Authentication

To verify user with its credentials so she can get in to the system

devise is one of Authentication plugin that works well (out of the box) with Rails 3:

Authorization

To verify whether the logged in user is allowed to access certain feature in the system

Here are the list of Authorization plugin in Rails (that works well with Rails 3).

  • CanCan
  • Declarative Authorization

CanCan is much simpler and straight forward. Decl_auth is much cleaner and can get pretty difficult to work with at some stage. Hope that helps.

like image 65
Joshua Partogi Avatar answered Sep 23 '22 01:09

Joshua Partogi