Sha256: 4b09003e007b16a350df030f309e64c624813525bf5cd2e52ac90fe54dac60b5

Contents?: true

Size: 1.75 KB

Versions: 9

Compression:

Stored size: 1.75 KB

Contents

# Sass Archive Importer Plugin

The Sass Archive Importer allows you to import CSS, Sass, and SCSS files
from a zip or jar file without unpacking it.

## Stylesheet Syntax

This importer works with the standard filesystem based import syntax,
allowing you to import from a folder or archive 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 archive file (for example,
during a build process).

## Installation

    $ gem install --pre sass-archive-importer

## Use with the Sass command line

    $ sass -r sass-archive-importer -I path/to/archive.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. Several `-I` options can be passed if
you need to import more than one zip or jar file.

## Use with Compass

Add the following to your compass configuration:

    require 'sass-archive-importer'
    # Note: you can call add_import_path more than once.
    add_import_path File.expand_path("path/to/archive.zip", File.dirname(__FILE__))
    add_import_path File.expand_path("path/to/archive.jar", File.dirname(__FILE__))

# Legal Stuff

Copyright 2013 LinkedIn Corp. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sass-archive-importer-1.0.0.beta.10 README.markdown
sass-archive-importer-1.0.0.beta.9 README.markdown
sass-archive-importer-1.0.0.beta.8 README.markdown
sass-archive-importer-1.0.0.beta.7 README.markdown
sass-archive-importer-1.0.0.beta.6 README.markdown
sass-archive-importer-1.0.0.beta.5 README.markdown
sass-archive-importer-1.0.0.beta.4 README.markdown
sass-archive-importer-1.0.0.beta.3 README.markdown
sass-archive-importer-1.0.0.beta.2 README.markdown