什么是“循环参数引用”错误,使用activesupport time_zone?

我是ruby on rails的新手,我正在尝试创建一个教程。 我执行rake db:migrate时遇到问题。

 hugo@ubuntu:~/pin_board$ rake db:migrate /home/hugo/.rvm/gems/ruby-2.2.2/gems/activesupport-4.0.5/lib/active_support/values/time_zone.rb:283: warning: circular argument reference - now 

是什么导致这个?
有人能帮助我吗?

您会看到此警告消息,因为您的Rails版本是4.0.5。 该问题已在Rails 4.0.6上修复。

更新Gemfile并运行bundle update rails

如果您想了解此问题的背景,请阅读我对另一个问题https://stackoverflow.com/a/30733016/513554的回答。