class SassC::Importer
Attributes
options[R]
Public Class Methods
new(options)
click to toggle source
# File lib/sassc/importer.rb, line 7 def initialize(options) @options = options end
Public Instance Methods
imports(path, parent_path)
click to toggle source
# File lib/sassc/importer.rb, line 11 def imports(path, parent_path) # A custom importer must override this method. # Custom importer may return an Import, or an array of Imports. raise NotImplementedError end