问题
I am getting
cannot load such file -- bootstrap/sass
I have installed bootstrap-sass-2.0.3.1, sass-3.1.18, sass-rails-3.2.5, coffee-rails-3.2.2 and uglifier-1.2.4
Why would I be getting this error?
回答1:
put bootstrap-sass in the assets group of the Gemfile
group :assets do
gem 'sass-rails', '~> 3.2.5'
gem 'coffee-rails', '~> 3.2.2'
gem 'uglifier', '>= 1.2.4'
gem 'bootstrap-sass', '~> 2.0.3.1'
end
回答2:
I was being a bit ahead of myself, appears I hadn't run gem install bootstrap-sass
yet...
Oops.
来源:https://stackoverflow.com/questions/10731246/cannot-load-such-file-bootstrap-sass