What's the best way to implement ACLs to a Rails application? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T09:23:52Z http://stackoverflow.com/feeds/question/118247 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/118247/whats-the-best-way-to-implement-acls-to-a-rails-application 2 What's the best way to implement ACLs to a Rails application? Rui Vieira 2008-09-22T23:40:09Z 2008-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#118380 1 Answer by Ryan Bigg for What's the best way to implement ACLs to a Rails application? Ryan Bigg 2008-09-23T00:19:43Z 2008-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#118383 1 Answer by Dan Harper - Leopard CRM for What's the best way to implement ACLs to a Rails application? Dan Harper - Leopard CRM 2008-09-23T00:21:06Z 2008-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#119125 1 Answer by marzagao for What's the best way to implement ACLs to a Rails application? marzagao 2008-09-23T04:25:04Z 2008-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>