我无法运行rake资产:在我的应用程序中预编译,但它尝试编译部分。
我有:
config.assets.precompile += %w( active_admin.js active_admin.css )
,别无其他。
Rake在档案中提出错误:
Undefined variable: "$selected-row-color".
(in /home/eloyesp/projects/diputados/app/assets/stylesheets/expedientes_index.css.scss)
为什么要尝试预编译此文件?
找到this pull request is related
和this test show that这不应该发生。
我的rails版本是3.2.2
答案 0 :(得分:1)
我发现它:不尝试编译expedientes_index.css.scss
它正在编译application.css.scss
(这有*= require_tree .
它不应该在此应用程序)。
问题是因为错误没有命名它正在尝试编译的文件。