Rails 4.1.2无法安装bullet gem

时间:2014-08-14 19:01:43

标签: ruby-on-rails ruby ruby-on-rails-4.1 rails-bullet

我已添加到我的Gemfile bullet gem:

gem "bullet", :group => "development"

在我的development.rb中我添加了:

  config.after_initialize do
    Bullet.enable = true
    Bullet.alert = true
  end

当我尝试运行rails服务器时,出现以下错误消息:

/home/mateusz/.rvm/gems/ruby-2.0.0-p0@rails4/gems/bullet-4.7.1/lib/bullet/active_record4.rb:53:in `alias_method': undefined method `construct_association' for class `ActiveRecord::Associations::JoinDependency' (NameError)

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:4)

嗯嗯..我工作得很好。试过一个已有的和一个新项目 - Win&林,两个。必须存在其他一些问题,可能包含gem个版本或rails版本。

仅针对测试用例 - 为什么不创建新的测试项目,看它是否在那里工作

rails new testproj
cd testproj
rails generate scaffold Person name:string
rake db:create db:migrate

完成后,只需打开gemfile并添加:gem "bullet", :group => "development"
然后在testproj/config/environments/development.rb文件中添加此

Rails.application.configure do
  ...
  config.after_initialize do
    Bullet.enable = true
    Bullet.alert = true
  end
  ...
end

完成后,只需执行bundle install并开始rails server

如果仍然出现错误,请更新宝石: -
gem update --system然后gem update