Rails アプリに public_activity を追加する方法を考え出そうとしています。
gemfile を追加し、正常にバンドルしました
私のguidelines.rb(モデル)には
class Guideline < ActiveRecord::Base
include PublicActivity::Model
tracked
def to_param
"#{id} #{title}".parameterize
end
attr_accessible :content, :hospital, :title, :user_id, :guideline_id, :specialty, :updated_by, :current_user, :subtitle, :slug, :comments
belongs_to :user
has_many :favourite_guidelines
しかし、私はエラーが発生しています
uninitialized constant Guideline::PublicActivity
これを機能させるには、他に何かを追加する必要がありますか?