Class: SassC::ImportHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/sassc/import_handler.rb

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ ImportHandler

Returns a new instance of ImportHandler.



5
6
7
8
9
10
11
# File 'lib/sassc/import_handler.rb', line 5

def initialize(options)
  @importer = if options[:importer]
    options[:importer].new(options)
  else
    nil
  end
end

Instance Method Details

#setup(_native_options) ⇒ Object



13
14
15
# File 'lib/sassc/import_handler.rb', line 13

def setup(_native_options)
  Importer.new(@importer) if @importer
end