1

我正在尝试在 Heroku 上运行一个基本的狂欢应用程序。我正在关注http://railsapps.github.io/rails-heroku-tutorial.html和大礼包 heroku 指南。

我已经编辑config/application.rb包含config.assets.initialize_on_precompile = false 然后,因为我需要在推送到 Heroku 之前进行预编译,所以我被困在这里:


D:\code\foo>rake assets:precompile --trace
** Invoke assets:precompile (first_time)
** Execute assets:precompile
d:/RailsInstaller/Ruby1.9.3/bin/ruby.exe d:/RailsInstaller/Ruby1.9.3/bin/rake assets:precompile:all RAILS_ENV=production RAILS_GROUPS=assets --trace
** Invoke assets:precompile:all (first_time)
** Execute assets:precompile:all
** Invoke assets:precompile:primary (first_time)
** Invoke assets:environment (first_time)
** Execute assets:environment
** Invoke tmp:cache:clear (first_time)
** Execute tmp:cache:clear
** Execute assets:precompile:primary
rake aborted!
Error: Out of stack space
  (in D:/code/foo/app/assets/javascripts/admin/all.js)
d:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/execjs-.4.0/lib/execjs/external_runtime.rb:68:in `extract_result'
...much more...

The all.js asset is unchanged from the original installation:

Running

rake assets:clean

在预编译之前为其他人解决了这个问题,但不是为我。

浏览它看起来这可能是 Windows 特定的问题?如果重要的话,我使用了 railsinstaller,并且我在相当新的笔记本电脑上运行 Windows 7。

4

1 回答 1

0

然后,因为我需要在推送到 Heroku 之前进行预编译

这是错误的。默认情况下,当您推送到 Heroku 时,Heroku 的 Cedar 堆栈会在 slug 编译期间编译您的资产。

有关更多信息,请参阅:https ://devcenter.heroku.com/articles/rails-asset-pipeline

于 2013-08-12T00:59:18.393 回答