I am installing the bootstrap-sass gem and I need to import Bootstrap into application.css.scss like:
@import "bootstrap";
however I can't find it in my assets/stylesheets folder. Do I just create it? Will my Rails app load this file?
I do have installed sass-rails:
gem 'sass-rails', '~> 4.0.0'
I placed this in my styles.css.scss:
@import 'bootstrap';
@import 'bootstrap/responsive';
Gemfile:
group :assets do
gem 'bootstrap-sass', '~> 2.3.2.0'
end
Any help is greatly appreciated.