I am using CanCanCan, Devise & Rolify.
My ApplicationController looks like this:
class ApplicationController < ActionController::Base
  # Prevent CSRF attacks by raising an exception.
  # For APIs, you may want to use :null_session instead.
  protect_from_forgery with: :exception
  before_filter :new_post
  rescue_from CanCan::AccessDenied do |exception|
    redirect_to root_url, :alert => exception.message
  end
  def new_post
    @post = Post.new
  end  
end
My routes.rb looks like this:
  authenticate :user, lambda { |u| u.has_role? :admin or :editor } do
    get 'newsroom', to: 'newsroom#index', as: "newsroom"
    get 'newsroom/published', to: 'newsroom#published'
    get 'newsroom/unpublished', to: 'newsroom#unpublished'    
  end
# truncated for brevity
  root to: "posts#index"
This is my ability.rb that is relevant:
elsif user.has_role? :member
    can :read, :all
    cannot :read, :newsroom
So when I am logged in as :member, and I try to go to /newsroom, I get this error:
NameError at /newsroom
uninitialized constant Newsroom
Rather than being redirected to the root_url with an :alert like I would have expected.
Not sure what's happening here.
Edit 1
For what it's worth, I only get this when I add this to my NewsroomController:
authorize_resource
 
                        
It turns out that the issue was with the way I authorized my
NewsroomController - becauseNewsroomwas a non-restful controller (i.e. there was no model associated withNewsroom.I had to add this to the top of my controller:
As specified here: https://github.com/CanCanCommunity/cancancan/wiki/Non-RESTful-Controllers#alternative-authorize_resource