I am trying to create a new rails app using sass-bootstrap, because I couldn't install therubyracer gem on windows to use the less twitter bootstrap.
I have included and successfully downloaded gem 'sass-rails' and gem 'bootstrap-sass'
in my gemfile, and my application.css file starts with @import 'bootstrap';
(is that different than the application.css.scss file the documentation says to put it in?).
I also have "//= require bootstrap" in my application.js file, but the fonts and styling to still not show on the page I created.
I am trying to follow along with this railscast tutorial, where he adds the bootstrap gem and the "products page" changes fonts immediately, but nothing has changed, and my page still displays as plain html. I can't run "rails g bootstrap:install", because that is not provided in the sass-bootstrap. What can I do that will get the same result? Thanks for the help