class SassC::Rails::Importer::ERBExtension
Public Instance Methods
import_for(full_path, parent_dir, options)
click to toggle source
# File lib/sassc/rails/importer.rb, line 67 def import_for(full_path, parent_dir, options) template = Tilt::ERBTemplate.new(full_path) parsed_erb = template.render(options[:sprockets][:context], {}) SassC::Importer::Import.new(full_path, source: parsed_erb) end