Reputation: 10566
As title, warden is very pluggable, I wonder if there is anything works with warden/devise?
Upvotes: 4
Views: 4058
Reputation: 1486
I've also used CanCan with Devise. It requires very easy to setup and all your authorization logic resides in a single file, in that way its very modularized.
Upvotes: 1
Reputation: 1807
I used acl9 with Devise. https://github.com/be9/acl9
I needed to dynamically grant authorization at the object level, which I don't think you can do with CanCan.
Upvotes: 1
Reputation: 4391
I use http://github.com/ryanb/cancan with Devise, its great and requires very little setup, you only have to define the abilitys as CanCan defaults to using current_user for the logged in user, which devise provides.
Upvotes: 4
Reputation: 3042
You could try this, which might be able to work alongside:
http://railscasts.com/episodes/188-declarative-authorization
Upvotes: 0