SASS is not creating the CSS files, but HAML is working just fine.
I ran the following command:
$: sass --watch scss:stylesheets
[true, ["scss", "stylesheets"]]
My main.scss file contains the following:
/* main.scss */
body {
background: #000000;
}
The main.css file never gets generated. So I ran the following:
$: sass --update
NoMethodError: undefined method `split' for nil:NilClass
Use --trace for backtrace.
What gives?
- Running Rails 3
- I've tried both haml and haml-edge