I just wanted to compare different solutions used when implementing ACLs in Rails.
|
|
|
|
|
|
|
I use the authorization plugin (Created by Bill Katz):
Homepage: http://www.writertopia.com/developers/authorization Docs: http://github.com/DocSavage/rails-authorization-plugin/tree/master/authorization/README.rdoc You might also be interested in reading this comparison (from last year but still somewhat useful; it's where I got the above quote from): http://www.vaporbase.com/postings/Authorization_in_Rails And a more recent comparison: http://steffenbartsch.com/blog/2008/08/rails-authorization-plugins/ |
||
|
|
|
|
There's a plugin called acl_system2 which operates by having a users table and a roles table. There's a lot more useful information in the README and the project is on github too. |
||
|
|
|
|
The best I've found is role_requirement. It plugs straight into the restful_authentication plugin. |
||
|
|
