在将Rails应用更新到v3.1时,我正在设置资产管道。我在/app/assets/stylesheets/layout.css.scss中有以下内容:
#ajaxing {
background:#666 image-url('spinner-16x16.gif') no-repeat center;
}
我正在使用SASS image-url
方法,但是当我加载网站时,会在/assets/application.css样式表中生成以下内容:
/* line 326, ~/app/assets/stylesheets/layout.css.scss */
#ajaxing {
background: #666666 url('/images/spinner-16x16.gif') no-repeat center;
}
请注意,网址路径使用'/ images /'而不是'/ assets /'。因此,我得到404s。我做错了什么?
PS。如果重要,我正在开发模式下运行并使用Compass gem。虽然,没有指南针我会得到同样的错误。