我正在使用 rails 3.1 并指定在我的 gemfile 中从 github 获取最新的注释 gem
gem 'annotate', "~> 2.4.1beta", :git => 'git://github.com/ctran/annotate_models.git'
我已经运行了 bundle install 但是当我运行 annotate 来注释我的模型时,我得到了错误......
`block in setup': You have already activated annotate 2.4.0, but your Gemfile requires annotate 2.4.1.beta1. Consider using bundle exec. (Gem::LoadError)
我仍然对如何更新宝石等有所了解,所以任何关于如何解决这个问题的建议都会很棒。我试过 bundle exec 但我得到一个“错误数量的参数”错误。
谢谢!标记。