We're using this gem to integrate Bootstrap in our Rails app. I've been looking to cut some css components that we don't need, an example of which is the Glyphicons. I'm just having some trouble understanding this piece of code in the README:
You can also import components explicitly. To start with a full list of modules copy this file from the gem:
# copy and prepend "bootstrap/" to the @import paths:
sed 's/@import "/@import "bootstrap\//' \
$(bundle show bootstrap-sass)/vendor/assets/stylesheets/bootstrap/bootstrap.scss > \
app/assets/stylesheets/bootstrap-custom.scss
What exactly should I do here?