由于某种原因,application.js/css 文件中不再需要资产文件。我在这两行中都有:
*= require_self
*= require_tree .
stylesheets
以及文件夹中的大量资产文件javascripts
。
应用日志(开发模式):
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 17:03:44 +0300
Served asset /application.css - 304 Not Modified (7ms)
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 17:03:45 +0300
Served asset /application.js - 304 Not Modified (2ms)
当我从浏览器中检查加载的 application.js/css 文件的内容时,它有这两行(注释掉):
*= require_self
*= require_tree .
所以它实际上看起来像应用程序资产文件没有被评估。您能否建议可能的原因是什么?
ubuntu 12.04,rvm,ruby 1.9.3-p194,nodejs