我的设置:Rails 2.3.10,Ruby 1.8.7,Gem 1.6.2,Mac OS X
我生成了一个脚手架并得到了这个警告
/Library/Ruby/Gems/1.8/gems/rails-2.3.10/lib/rails_generator/lookup.rb:212:Warning: Gem::cache is deprecated and will be removed on or after August 2011. Use Gem::source_index.
/Library/Ruby/Gems/1.8/gems/rails-2.3.10/lib/rails_generator/lookup.rb:234:Warning: Gem::cache is deprecated and will be removed on or after August 2011. Use Gem::source_index.
我不打算更改lookup.rb,因为它是一个Rails生成器文件,所以如何修复此警告?
答案 0 :(得分:3)
弃用警告向我们展示了未来版本的rails
中将更改/删除的内容我找到了article,其中显示了如何关闭此警告。
一站式,一般,解决方案:
ActiveSupport::Deprecation.silenced = true
这篇文章有几个更细粒度的解决方案。
答案 1 :(得分:1)
别担心,因为它是一个生成器文件,它将更新到这个日期。