For whatever reason, this first attempt at dynamic styling gets me a Sass::SyntaxError on the line below. It looks like the erb is not being pre-processed.
/* app/assets/stylesheets/variables.css.scss.erb */
$headerHeight: <%= '15px' %>;
It's in development mode. Any idea what could cause this?
Here are my configuration options relating to assets in case that helps:
# Application
config.assets.enabled = true
config.assets.initialize_on_precompile = true
config.assets.version = '1.1'
# Development
config.assets.compress = false
config.assets.debug = false