It seems that Ryan Bates stopped developing CanCan. Rails 4 is nos fully supported. And, ready4rails4 says that it isn't work.
Should I replace CanCan for another authorization library?
Regards
It seems that Ryan Bates stopped developing CanCan. Rails 4 is nos fully supported. And, ready4rails4 says that it isn't work.
Should I replace CanCan for another authorization library?
Regards
Copyright © 2021 Jogjafile Inc.
I do not longer use CanCan in new projects exactly because of the reasons you mentioned, too many open issues and unresolved pull requests.
You may want to have a look at Ryan's "Authorization From Scratch" RailsCasts.
You may also find useful the following snippets of code:
lib/errors/
app/controllers/application_controller.rb
app/policies/user_policy.rb
app/controllers/
This solution, which I currently use in all my new apps is based on the following excellent article: http://www.elabs.se/blog/52-simple-authorization-in-ruby-on-rails-apps. It is so simple to implement and test that you can easily adapt it to your application needs.
Good luck replacing CanCan.