I've added bootstrap-sass to my gemfile. I've followed the instructions here https://github.com/twbs/bootstrap-sass. Modifications have been made to the javascript/application.js.scss and stylesheet/application.css.scss files per the above link.
When I try to view a new controller, I get this:
Sass::SyntaxError in Test#index Showing /Users/myuser/Rails/myproject/app/views/layouts/application.html.erb where line #5 raised:
File to import not found or unreadable: bootstrap-sprockets.
*/ @import "bootstrap-sprockets"; @import "bootstrap";
I haven't added any bootstrap code to the Rails app yet. It's a new Rails app with only the above modifications and one new controller.
I did run bundle install but it seemed to not install anything. The output was this:
Bundle complete! 13 Gemfile dependencies, 56 gems now installed. Use
bundle show [gemname]
to see where a bundled gem is installed.
along with a bunch of Using
s. I did see these entries:
Using bootstrap-sass 3.3.5.1
Using bootstrap-sass 0.0.2
Any idea why I'm getting the above error?