我正在写一些博客应用程序,我想实现一些私人消息系统。我安装了名为mailboxer 的gem,但由于它与Rails 4 不兼容而出现问题。当我尝试从rails 控制台向其他用户发送消息时出现错误:
RuntimeError: `attr_accessible` is extracted out of Rails into a gem. Please use new recommended protection model for params(strong_parameters) or add `protected_attributes` to your Gemfile to use old one.
from /home/mateusz/.rvm/gems/ruby-2.0.0-p0@rails4/gems/activemodel-4.0.0.beta1/lib/active_model/deprecated_mass_assignment_security.rb:14:in `attr_accessible
我不想安装“protected_attributes”,我想以 Rails 4 方式安装,但我不知道该怎么做……有人能帮忙吗?