What's the best way to implement ACLs to a Rails application? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T09:23:52Zhttp://stackoverflow.com/feeds/question/118247http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/118247/whats-the-best-way-to-implement-acls-to-a-rails-application2What's the best way to implement ACLs to a Rails application?Rui Vieira2008-09-22T23:40:09Z2008-09-23T04:25:04Z
<p>I just wanted to compare different solutions used when implementing ACLs in Rails.</p>
http://stackoverflow.com/questions/118247/whats-the-best-way-to-implement-acls-to-a-rails-application/118380#1183801Answer by Ryan Bigg for What's the best way to implement ACLs to a Rails application?Ryan Bigg2008-09-23T00:19:43Z2008-09-23T00:19:43Z<p>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 <a href="http://github.com/ezmobius/acl_system2/tree/master/README" rel="nofollow">README</a> and the project is on github too.</p>
http://stackoverflow.com/questions/118247/whats-the-best-way-to-implement-acls-to-a-rails-application/118383#1183831Answer by Dan Harper - Leopard CRM for What's the best way to implement ACLs to a Rails application?Dan Harper - Leopard CRM2008-09-23T00:21:06Z2008-09-23T00:21:06Z<p>The best I've found is <a href="http://github.com/timcharper/role_requirement/tree/master" rel="nofollow">role_requirement</a>. It plugs straight into the restful_authentication plugin.</p>
http://stackoverflow.com/questions/118247/whats-the-best-way-to-implement-acls-to-a-rails-application/119125#1191251Answer by marzagao for What's the best way to implement ACLs to a Rails application?marzagao2008-09-23T04:25:04Z2008-09-23T04:25:04Z<p>I use the authorization plugin (Created by <a href="http://www.billkatz.com/" rel="nofollow">Bill Katz</a>):</p>
<blockquote>
<p>Roles can be authorized for the entire application, a model class, or a specific object. The plugin provides a way of checking authorization at the class or instance method level using permit and permit? methods. It also provides english-like dynamic methods like "user.is_manager_of project" (where "user" acts as authorized, "manager" is a role, and "project" is an authorizable model). You can specify how control is redirected if authorization is denied. (<a href="http://www.vaporbase.com/postings/Authorization_in_Rails" rel="nofollow">quote source</a>)</p>
</blockquote>
<p>Homepage:
<a href="http://www.writertopia.com/developers/authorization" rel="nofollow">http://www.writertopia.com/developers/authorization</a></p>
<p>Docs:
<a href="http://github.com/DocSavage/rails-authorization-plugin/tree/master/authorization/README.rdoc" rel="nofollow">http://github.com/DocSavage/rails-authorization-plugin/tree/master/authorization/README.rdoc</a></p>
<p><hr /></p>
<p>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):
<a href="http://www.vaporbase.com/postings/Authorization_in_Rails" rel="nofollow">http://www.vaporbase.com/postings/Authorization_in_Rails</a></p>
<p>And a more recent comparison:
<a href="http://steffenbartsch.com/blog/2008/08/rails-authorization-plugins/" rel="nofollow">http://steffenbartsch.com/blog/2008/08/rails-authorization-plugins/</a></p>