Import Once

This plugin changes the behavior of Sass's @import directive so that if the same sass file is imported more than once, the second import will be a no-op. This allows dependencies to be

Installation

Or add this line to your application's Gemfile if you have one:

gem 'compass-import-once', :require => "compass/import-once/activate"

And then execute:

$ bundle

Or install it yourself as:

$ gem install compass-import-once

Usage

To enable in non-compass environments there's two options:

require 'compass/import-once/activate'

or you can activate it conditionally:

require 'compass/import-once'
Compass::ImportOnce.activate!