1

我正在使用 Twitter 的新activerecord-reputation-system gem,但它似乎没有在我的应用程序中注册。

我跑去安装(文档有错字):

gem install activerecord-reputation-system && rails generate reputation_system && rake db:migrate

我已将它包含在我的 gemfile 中,并尝试直接从 github 中提取,以及重新启动我的本地服务器。错误如下:

ActionController::RoutingError (未定义的方法has_reputation' for #<Class:0x007fa7ed783ec0>): app/models/post.rb:18:in'app/models/post.rb:1:in <top (required)>' app/controllers/posts_controller.rb:1:in'

当我尝试使用此代码为帖子添加投票时:

class Post < ActiveRecord::Base
  belongs_to :user
  has_reputation :votes,
    :source => :user,
    :aggregated_by => :sum
end

当我尝试使用相同的代码向用户添加投票时,我得到:

undefined method `has_reputation' for #<Class:0x007fa7efb70388>

app/models/user.rb:17:in `<class:User>'
app/models/user.rb:1:in `<top (required)>'
config/routes.rb:4:in `block in <top (required)>'
config/routes.rb:1:in `<top (required)>'

This error occurred while loading the following files:
   /Users/username/appname/config/routes.rb

routes.rb,第 4 行:

devise_for :users, :controllers => { :omniauth_callbacks => "users/omniauth_callbacks" }

有任何想法吗?

4

1 回答 1

4

您应该reputation_system在您的应用程序中要求。您可以通过添加到您的来做到这一点Gemfile

gem 'activerecord-reputation-system', :require => 'reputation_system'

更新:从版本2.0.0开始,您不再需要reputation_system

gem 'activerecord-reputation-system'
于 2012-05-22T15:42:52.040 回答