I am suddenly getting this error in development and in production on deployment.
custom.css.scss
@import \"bootstrap-sprockets\"; @import \"bootstrap
This error mostly comes in rails 3.2.x versions. If you are using rails version 3.2 you have to specify a special version in your gem file like below:
gem 'rails', '3.2.0' gem 'bootstrap-sass', '3.2.0.2'
It will resolve the problem for rails -v '3.2.0'
rails -v '3.2.0'