Sass globbing allows you to import many sass or scss files in a single import statement.
Import a folder of files:
@import "library/mixins/*"
Import a tree of files:
@import "library/**/*"
Globbed files are sorted alphabetically before importing them.
Globs are always relative to the current file. The ruby glob file syntax is used, read the docs for more that you can do with it.
$ gem install sass-globbing
$ sass -r sass-globbing --watch sass_dir:css_dir
Add the following to your compass configuration:
require 'sass-globbing'
Ruby on Rails has this capability out of the box starting in Rails 3.1. Do not install this plugin if you use Rails 3.1 or greater.
CSS is order dependent, as such, using this approach within your stylesheets to import styles that depend on the stylesheet's cascade creates an opportunity for styles to change more unpredictably than a manually asserted order. It is recommended that you only use globbing where order is unimportant; E.g. importing of library files.