I've followed the very thorough instructions below to add sprockets/asset pipeline to a legacy Rails 2.3.18 application I'm working on:
http://jaredonline.github.io/blog/2012/05/16/sprockets-2-with-rails-2-dot-3/
I have one outstanding issue -- in my vendor/assets/stylesheets/bootstrap
dir, I have copied all of the .scss files from the sass-bootstrap gem.
When I run the rake task provided in the above URL, rake assets:precompile
, it errors out with this error: https://github.com/thomas-mcdonald/bootstrap-sass/issues/378
The issue is that sprockets is trying to compile some partial .scss files, which should just be compiled into the main application.css file.
Since I don't have the ability to change the config.assets.precompile
Rails configuration in 2.3.18, how do you recommend I tell sprockets to ignore compiling these partial .scss files individually?