【发布时间】:2010-07-28 12:20:12
【问题描述】:
SASS 没有创建 CSS 文件,但 HAML 工作正常。
我运行了以下命令:
$: sass --watch scss:stylesheets
[true, ["scss", "stylesheets"]]
我的 main.scss 文件包含以下内容:
/* main.scss */
body {
background: #000000;
}
main.css 文件永远不会生成。所以我运行了以下内容:
$: sass --update
NoMethodError: undefined method `split' for nil:NilClass
Use --trace for backtrace.
什么给了?
- 运行 Rails 3
- 我已经尝试过 haml 和 haml-edge
【问题讨论】:
标签: ruby-on-rails haml sass