RubyMine显示警告'找不到'before_action“'

时间:2014-12-19 23:23:48

标签: rubymine rubymine-7

RubyMine7.0.1在每个控制器类中显示此警报 下面的控制器类文件。 感谢。

application_controller.rb

class ApplicationController < ActionController::Base
  protect_from_forgery with: :exception
  helper_method :current_user, :logged_in?
  before_action :authenticate

  private
  def current_user
    return unless sessions[:user_id]
    @current_user ||= User.find(session[:user_id])
  end

  def logged_in?
    !!session[:user_id]
  end

  def authenticate
    return if logged_in?
    redirect_to root_path, alert: 'ログインして下さい。'
  end
end

1 个答案:

答案 0 :(得分:0)

当我从现有来源导入项目并且没有为项目正确设置Project SDK时,我收到了同样的错误。