Rails3, and users credentials : which plugin?
I'm starting a new project on Rails3 and my question is about which plugin can i use to manage my users.
I开发者_运维知识库 heard about Authlogic but it seems to don't be compatible with rails3.
So if you have any suggestions, I'll be glad to hear them.
Thanks
I advise you to use the Devise plugin. It works very well.
You can then add CanCan plugin written by Ryan Bates
Good luck !
For now, install Authlogic as a vendored plugin from Git.
$ cd /my/rails/app/
$ rails plugin install git://github.com/binarylogic/authlogic.git
精彩评论