class Sprockets::DirectiveProcessor
def process_include_directive(path)
//= include "header"
has been required.
inserts the contents of the dependency even if it already
The `include` directive works similar to `require` but
def process_include_directive(path) pathname = context.resolve(path) context.depend_on_asset(pathname) included_pathnames << pathname end