0

我已经创建了我想在其中添加“has_message_generator”的应用程序。已经安装了一个身份验证插件“Devise”,所以我按照下面的这些方向进行操作。

  1. 将此行添加到我的 Gemfile 并进行捆绑安装 gem "has_messages_generators"

  2. 做了这个命令行,似乎一切正常! rails g has_messages:install user

但是"uninitialized constant User::HasMessages"当我访问根页面时它显示错误。所以我"include HasMessages"从 user.rb (在模型目录中)起飞,"bundle exec rake db:migrate" 似乎它成功创建了表。

然后我尝试访问根页面,它仍然显示"undefined method#"`的错误收件箱'

有人知道安装这个插件吗???

4

1 回答 1

1

You have to install has_messages, too:

… to use this you must include devise and has_messages in your Gemfile.

于 2012-06-18T13:32:34.360 回答