未知密钥::Mailboxer 中的订单 Gem

Unknown key: :order in Mailboxer Gem

我目前正在尝试使用 Mailboxer Gem。我在 Gem 文件中添加了以下行:

gem "mailboxer"

我在 konsole 中做了这些:

$ bundle install
$ rails g mailboxer:install
$ rake db:migrate
$ rails g mailboxer:views

并在我的 user.rb 中添加了 acts_as_messageable。但是,我收到此错误

我尝试将 Gem 文件中的 gem 从 gem 'mailboxer'' 替换为 gem 'mailboxer', github: 'mailboxer/mailboxer',但是当我捆绑安装

时收到此消息
git://github.com/mailboxer/mailboxer.git (at master@0e41d6a) is not yet checked out. Run `bundle install` first.

如何解决此问题并使邮箱程序在我的 rails 应用程序中工作?

我发现我应该在 user.rb 中添加以下方法,除了行 acts_as_messageable:

  acts_as_messageable

  def name 
    self.name
  end 

  def mailboxer_email(object)
    nil
  end 

我为 Gemfile 使用了以下内容:

gem 'mailboxer', '~> 0.14.0'

我之前尝试的两个错误现在都消失了。