Rails 3.1 Asset Pipeline:预编译的 MD5 指纹不匹配

发布于 2024-11-29 19:07:48 字数 265 浏览 1 评论 0原文

我在 Heroku 的 cedar 堆栈(ruby 1.9.2)上有一个 Rails 3.1 rc6 应用程序。

我使用 rake asset:precompile RAILS_ENV=在我的开发计算机上本地预编译资产。

问题是预编译文件名中生成的 md5 指纹与 Heroku 生产中的 Rails 帮助程序(如 asset_path)生成的 md5 指纹不匹配。

有谁知道这是为什么吗?我该如何修复它?我无法在 Heroku 上进行预编译,因为它们有只读文件系统。

I'm having a Rails 3.1 rc6 app on Heroku's cedar stack (ruby 1.9.2).

I precompile assets using rake assets:precompile RAILS_ENV=production locally on my development machine.

The problem is the generated md5 fingerprints in the precompiled filenames don't match the ones generated by the rails helpers (like asset_path) in production on Heroku.

Does anyone have a clue why this is? How can I fix it? I can't precompile on Heroku, as they have a read only filesystem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

表情可笑 2024-12-06 19:07:48

有点在黑暗中刺伤,但是当我今天升级到 rc6 时,这在初始化器中出现了问题:

if RAILS_ENV == 'production'   

并通过以下方式修复:

if Rails.env.production?

不知道这是否与它有关。

Bit of a stab in the dark, but when I upgraded to rc6 today, this broke in an initializer:

if RAILS_ENV == 'production'   

and was fixed with this:

if Rails.env.production?

Don't know if that's got anything to do with it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文