Just asking whenever devise authentication mechanism for Rails does not conflict with declarative_authorization.

Maybe someone tried this combo and can share their knowledge, so I and other coders do not waste time trying to tie these ones up.

link|improve this question

feedback

3 Answers

up vote 12 down vote accepted

Yes it is. I am currently using both in my project now.

Everything works seamlessly. Just configure devise and declarative_authorization as documented and set this in your application_controller.rb (which is also available in declarative_authorization docs)

before_filter :set_current_user
 protected
 def set_current_user
   Authorization.current_user = current_user
 end

current_user is a helper method that is provided by devise.

Hope that helps.

Note: I am using Rails 3 beta, with the latest devise and declarative_authorization.

link|improve this answer
feedback

FYI - I wrote a very detailed post on using Devise for auth and CanCan for roles and permissions. I think the people reading this Q&A would appreciate it: http://www.tonyamoyal.com/2010/07/28/rails-authentication-with-devise-and-cancan-customizing-devise-controllers/

link|improve this answer
feedback

I haven't used devise myself, but I have some experience with declarative_authorization.

It shouldn't be a problem to use it with devise as it doesn't care at all about authentication. Declarative_authorization only needs the User model to have a role_symbols method and otherwise it doesn't matter what the model really does.

link|improve this answer
Not that simple. Infact declarative_authorization is not compatible with Authlogic. – jpartogi May 6 '10 at 3:12
Why not? I'm using declarative_authorization with authlogic now and didn't have any problems. – Tomas Markauskas May 6 '10 at 9:44
What Rails version are you using? – jpartogi May 6 '10 at 12:20
I'm still on 2.3.5. What are the problems when using both libraries with Rails 3? – Tomas Markauskas May 6 '10 at 13:34
For those coming across this, I've been using Authlogic with declarative_authorization with Rails 3 for a while now and have had no problems at all. – derkyjadex Jan 19 '11 at 16:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.