与this questions相关,我有一个使用rails 4.1.8和rspec 2.99的gem。当我运行我的rspec套件时,我收到了弃用通知:
[deprecated] I18n.enforce_available_locales will default to true in the future. If you really want to skip validation of your locale you can set I18n.enforce_available_locales = false to avoid this message.
在链接的帖子中,解决方案是将config.i18n.enforce_available_locales = true
添加到application.rb
;但是,gem没有这样的文件,我不知道在哪里设置gem的配置设置。
更新
我尝试将此语句添加到我的railtie.rb
中,因为Railtie documentation似乎暗示了这一点,但这似乎没有任何效果。