class Sass::Plugin::StalenessChecker

def stylesheet_modified_since?(template_file, mtime, importer = nil)

Returns:
  • (Boolean) - Whether the stylesheet has been modified.

Parameters:
  • importer (Sass::Importers::Base) -- The importer used to locate the stylesheet.
  • mtime (Fixnum) -- The modification time to check against.
  • template_file (String) -- The location of the Sass or SCSS template.
def stylesheet_modified_since?(template_file, mtime, importer = nil)
  importer ||= @options[:filesystem_importer].new(".")
  dependency_updated?(mtime).call(template_file, importer)
end