What are some good role authorization solutions used with Authlogic? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:28:06Zhttp://stackoverflow.com/feeds/question/875595http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/875595/what-are-some-good-role-authorization-solutions-used-with-authlogic2What are some good role authorization solutions used with Authlogic?taelor2009-05-17T21:59:13Z2009-11-17T09:12:44Z
<p>I am looking for a good role based authorization solution to use alongside Authlogic. Anyone have any good suggestions? Please list some pros and cons from your experience if possible please. </p>
http://stackoverflow.com/questions/875595/what-are-some-good-role-authorization-solutions-used-with-authlogic/876260#8762603Answer by Brian Hogan for What are some good role authorization solutions used with Authlogic?Brian Hogan2009-05-18T04:36:31Z2009-05-18T04:36:31Z<p>At RailsConf, I saw a lightning talk on Lockdown and was very impressed. Anyone with a modest amount of db and rails experience can roll their own ACL system, but Lockdown looks nice because it tries to keep the permission stuff out of the way.</p>
<p><a href="http://lockdown.rubyforge.org/" rel="nofollow">http://lockdown.rubyforge.org/</a></p>
<p>I had used role_requirement previously but I didn't dig it.</p>
http://stackoverflow.com/questions/875595/what-are-some-good-role-authorization-solutions-used-with-authlogic/894712#8947121Answer by Jaryl for What are some good role authorization solutions used with Authlogic?Jaryl2009-05-21T19:35:45Z2009-05-21T19:35:45Z<p>Acl9 works great with AuthLogic:</p>
<p><a href="http://github.com/be9/acl9/tree/master" rel="nofollow">http://github.com/be9/acl9/tree/master</a></p>
http://stackoverflow.com/questions/875595/what-are-some-good-role-authorization-solutions-used-with-authlogic/1526263#15262631Answer by Ryan for What are some good role authorization solutions used with Authlogic?Ryan2009-10-06T15:17:47Z2009-11-17T02:34:54Z<p>Check out <a href="http://blog.platform45.com/2009/10/05/howto-basic-roles-for-users" rel="nofollow">http://blog.platform45.com/2009/10/05/howto-basic-roles-for-users</a> for basic role requirement, works with restful_authentication and authlogic..</p>
<p>It's really simple, fast and lightweight.</p>
http://stackoverflow.com/questions/875595/what-are-some-good-role-authorization-solutions-used-with-authlogic/1747524#17475240Answer by Ryan for What are some good role authorization solutions used with Authlogic?Ryan2009-11-17T09:12:44Z2009-11-17T09:12:44Z<p>I have recently have been using a gem called easy_roles. Super light weight and super easy to use. It's also flexible enough for you to implement your own controller security etc etc.</p>
<p><a href="http://github.com/platform45/easy%5Froles" rel="nofollow">http://github.com/platform45/easy_roles</a></p>