Spree не работает с установленным гемом protected_attributes
Я обновляю свое приложение с rails 3.2
в rails 4
, Я слежу за этим Railscast #415 Upgrading to Rails 4
Когда я попытался начать свой rails server
после добавления protected_attributes
жемчужина в моем Gemfile
Spree дает мне эту ошибку, и я не могу запустить сервер.
Gemfile
source 'https://rubygems.org'
# Other gems
gem 'rails', '~> 4.2.7'
#...
gem 'spree', '~> 3.1.0'
# Gems for upgrading to rails 4
gem 'protected_attributes'
gem 'activeresource'
gem 'activerecord-session_store'
gem 'activerecord-deprecated_finders'
Ошибка:
$ rails server
***************************************************************************
[FATAL] Spree does not work with the protected_attributes gem installed!
You MUST remove this gem from your Gemfile. It is incompatible with Spree.
***************************************************************************
Любая помощь будет оценена.