Я использую Rails 3.1RC4 с настройкой по умолчанию SASS. У меня есть следующие файлы
application.css.scss
/*
* This is a manifest file that'll automatically include all the stylesheets available in this directory
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
* the top of the compiled file, but it generally better to create a new file per style scope.
*= require_self
*= require_tree .
*/
_variables.css.scss
$var1 : somevalue;
...
site_layout.css.scss
@import "variables";
... Some Sass Code
Но я не могу получить доступ к переменным, определенным в _variables.css.scss в site_layout. Что я делаю не так? Rails, по-видимому, находит файл переменных, поскольку он не выдает ошибку "файл не найден", что делает, если я изменю имя файла импорта. Тем не менее, вары не переносятся.
Любые идеи?
Спасибо!