2012-06-29 53 views

回答

3

在Gemfile中添加gem "multi_json"

刪除Gemfile.lock的文件

然後運行bundle install

這幫助我克服了上述錯誤。

0

查找捆綁包中multi_json的最低兼容版本。在我的情況下,它是1.3.0,所以我增加了以下我的Gemfile

gem "multi_json", "~> 1.3.0"

然後運行

bundle update multi_json

這將從衝突版本解鎖multi_json並安裝根據你的包最低兼容版本。

相關問題