Sha256: 50e31b325bc927b2652e99817ae7f22b5f46dd819c91cdff7175dbd4f8056584
Contents?: true
Size: 971 Bytes
Versions: 1
Compression:
Stored size: 971 Bytes
Contents
# Sass CSS Importer Plugin The Sass Zip Importer allows you to import CSS, Sass, and SCSS files from a zip file without unpacking it. ## Stylesheet Syntax This importer works with the standard filesystem based import syntax, allowing you to import from a folder or zip file with the same code. This allows you to develop against an unpacked version of a library but also compile the stylesheets against a pre-built zip file (for example, during a build process). ## Installation $ gem install --pre sass-zip-importer ## Use with the Sass command line $ sass -r sass-zip-importer -I path/to/file.zip --watch sass_dir:css_dir Note: several -r options can be given to the sass command line if you need to require several libraries. ## Use with Compass Add the following to your compass configuration: require 'sass-zip-importer' # Note: you can call add_import_path more than once. add_import_path "#{File.dirname(__FILE__)}/path/to/file.zip"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sass-zip-importer-1.0.0.beta.0 | README.markdown |