我一直关注轨道上的reInteractive ruby(15分钟博客),在帖子的末尾(第二部分),我使用heroku上传文件时出错:
! Precompiling assests failed
!Push rejected, failed to compile Ruby app
To git@heroku.com:peaceful-sea-8032.git
! [remote rejected] master -> master <pre-receive hook declined>
error: failed to push some refs to 'git@heroku.com:peaceful-sea-8032.git'
ps:应用程序在localhost上正常运行,我看到了一些类似的问题,但我没有成功尝试他们的解决方案。
答案 0 :(得分:1)
在本地预编译您的资产。在你的shell cd到你的应用程序文件夹并输入:
RAILS_ENV=production bundle exec rake assets:precompile
这将在本地预编译您的资产 然后你必须
git add .
git commit -am 'precompiled assets'
git push heroku
(编辑最后一行)