Is there a Rails ACL plugin/gem that uses MPTT (Modified Preorder Tree Traversal) as the technique to administer permissions?
I'm looking for ACL that will allow me to create roles, assign users to one or many roles, set permissions at the role level and at the user level.
We use CakePHP at the moment and the built in ACL is built using the Tree behavior (which is MPTT). I've read that Rails has acts_as_nested_set which is MPTT. Are there any ACL plugins/gem that utilize acts_as_nested_set?
The biggest thing is that user and role permissions are editable via a GUI (persisted in the database).