Rails 3.1 Asset Pipeline:预编译的 MD5 指纹不匹配
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有点在黑暗中刺伤,但是当我今天升级到 rc6 时,这在初始化器中出现了问题:
并通过以下方式修复:
不知道这是否与它有关。
Bit of a stab in the dark, but when I upgraded to rc6 today, this broke in an initializer:
and was fixed with this:
Don't know if that's got anything to do with it.