Sha256: 110551e8e50baf077990762021029905c66bfb97943c8307daa39768b230586a

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 KB

Contents

# Sass Globbing Plugin

Sass globbing allows you to import many sass or scss files in a single import statement.

## Stylesheet Syntax

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][globbing_docs] for more that you can do with it.

## Installation

    $ gem install sass-globbing

## Use with the Sass command line

    $ sass -r sass-globbing --watch sass_dir:css_dir

## Use with compass

Add the following to your compass configuration:

    require 'sass-globbing'

## Use with Ruby on Rails

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.

## Caveats

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.


[globbing_docs]: http://ruby-doc.org/core/classes/Dir.html#M000629

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sass-globbing-1.1.1 README.markdown
sass-globbing-1.1.0 README.markdown
sass-globbing-1.1.0.pre.1 README.markdown
sass-globbing-1.1.0.pre.0 README.markdown