Я недавно обновился до rails 3.1, а также установил Bourbon gem в моем приложении rails 3.1. Добавил это в мой gemfile: gem 'bourbon'
и запустил $ bundle install
, но когда в моем application.css.scss я добавил строку @import "bourbon";
, я получил следующую ошибку:
File to import not found or unreadable: bourbon.
Load path: Sass::Rails::Importer ...
вот мой файл 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's generally better to create a new file per style scope.
*= require_self
*/
@import "bourbon";
@import "scaffold.css.scss";
.hidden{
display:none;
}
есть идеи, как загрузить Boubon? что я делаю не так?
Я предполагаю, что должны быть какие-то файлы, которые должны быть сгенерированы для рельсов, чтобы получить доступ к библиотеке бурбонов, не так ли?
Любая помощь или подсказки будет высоко ценится