C:\Sites\dtr-payroll>rake assets:precompile
rake aborted!
You have already activated rake 10.0.4, but your Gemfile requires rake 10.0.3. Using bundle exec may solve this.
C:/Sites/dtr-payroll/config/boot.rb:6:in `<top (required)>'
C:/Sites/dtr-payroll/config/application.rb:1:in `<top (required)>'
C:/Sites/dtr-payroll/Rakefile:5:in `<top (required)>'
(See full trace by running task with --trace)
问问题
3268 次
4 回答
19
你应该先删除你的Gemfile.lock
文件,bundle install
然后再使用
rake assets:precompile
这是因为您已激活 rake 10.0.4,但在 Gemfile.lock 文件中它是 rake 10.0.3,因此您要么更改它,要么删除 Gemfile.lock 文件。
于 2013-04-02T05:01:44.663 回答
5
通过将您的 rake 更新到 10.0.4
bundle update rake
那会解决它
于 2013-04-20T08:42:59.443 回答
2
请试试
bundle exec rake assets:precompile
你应该先谷歌它
于 2013-04-02T03:31:42.887 回答
0
你可以使用 bundle exec rake assets:precompile 如果你更新数据库迁移,你可以使用:bundle exec rake db:migrate
于 2013-05-20T08:00:22.790 回答