可能是某天升级 brew 的 imageMagick 之后 RMagick 有问题了,就出现了如下错误:
This installation of RMagick was configured with ImageMagick 6.7.5 but ImageMagick 6.7.7-6 is in use. (RuntimeError)
解决办法: gem pristine rmagick
连接:https://github.com/mroth/lolcommits/issues/56
google 英文搜索链接到这里得,赞
还有一种解决办法是在 config/application.rb 中添加
RMAGICK_BYPASS_VERSION_TEST = true
加在下面一行之前就可以
Bundler.require(:default, Rails.env) if defined?(Bundler)