Sass::Importers::Filesystem
This custom importer that tracks all imported filenames during compile.
# File lib/sprockets/sass_importer.rb, line 9 def initialize(*args) @imported_filenames = [] super end
# File lib/sprockets/sass_importer.rb, line 22 def find(*args) engine = super if engine && (filename = engine.options[:filename]) @imported_filenames << filename end engine end
# File lib/sprockets/sass_importer.rb, line 14 def find_relative(*args) engine = super if engine && (filename = engine.options[:filename]) @imported_filenames << filename end engine end
[Validate]
Generated with the Darkfish Rdoc Generator 2.