Ruby-on-Rails プロジェクトbefore_filter :authenticate_user!, :only => [:show]
で Devise を使用していますが、 UsersController で使用すると機能しません。
# ./controllers/users_controller.rb
class UsersController < Devise::SessionsController
before_filter :authenticate_user!, :only => [:show]
def show
end
end
# ./config/routes.rb
Notify::Application.routes.draw do
devise_for :users
...
end