升级到Rails 3.2.0
后,我开始在开发日志和测试输出中看到以下弃用警告:
DEPRECATION WARNING: ActiveSupport::Memoizable is deprecated and will be removed in future releases,simply use Ruby memoization pattern instead. (called from <top (required)> at /Users/foo/bar/baz/bif/config/environment.rb:5)
答案 0 :(得分:4)
我追溯到this rails issue(具体为this comment)和this carrierwave issue。
解决方案是升级carrierwave
:
Gemfile diff
-gem 'carrierwave', '~> 0.5.8'
+gem 'carrierwave'
请记得运行bundle update
。