2

我正在为我的 Rails 应用程序使用 Heroku Cedar 堆栈,并且我希望它在 slug 编译期间预编译资产,因为我不想打扰 git 中的预编译内容。

现在看起来一切都应该没问题,因为在 slug 编译期间日志显示:

Preparing app for Rails asset pipeline
       Running: rake assets:precompile
       /usr/local/bin/ruby /tmp/build_8bg62ph22vwj/vendor/bundle/ruby/1.9.1/bin/rake assets:precompile:nondigest RAILS_ENV=production RAILS_GROUPS=assets

但是当我尝试访问该站点时,heroku logs我得到:

2011-11-30T08:23:52+00:00 app[web.1]: ActionView::Template::Error (blueprint/screen.css isn't precompiled):
2011-11-30T08:23:52+00:00 app[web.1]:     22:   <%= javascript_include_tag 'http://html5shiv.googlecode.com/svn/trunk/html5.js' %>
2011-11-30T08:23:52+00:00 app[web.1]:     23:   <![endif]-->
2011-11-30T08:23:52+00:00 app[web.1]:     24:   <%= javascript_include_tag  'application' %>
2011-11-30T08:23:52+00:00 app[web.1]:     25:   <%= stylesheet_link_tag     'blueprint/screen', :media => 'screen' %>
…

你知道问题出在哪里吗?

4

2 回答 2

4

您是否尝试过在本地部署应用程序?如果是这样,您将得到相同的结果。

使用资产管道时,它默认通过 application.css 提供所有 CSS。

您是否可以将样式表标签更改为:

<%= stylesheet_link_tag 'application' %>

如果这在开发中正确显示,那么它也应该在生产中工作。

或者,如果您确实需要直接包含该文件,则需要修改config/environments/production.rb以添加:

config.assets.precompile += %w( blueprint/screen.css )
于 2011-11-30T14:17:26.023 回答
0

Dominic Townsend给出了绝对正确的问题来源。至于这里的解决方案,在关于堆栈溢出的其他问题的答案中是非常好的选择。

于 2011-11-30T18:48:45.240 回答