class Sprockets::DirectiveProcessor

def process_depend_on_asset_directive(path)


//= depend_on_asset "bar.js"

Unlike `depend_on`, the path must be a requirable asset.

source file.
invalid the asset dependency will invalidate the cache our the
This is used for caching purposes. Any changes that would

it.
Allows you to state a dependency on an asset without including
def process_depend_on_asset_directive(path)
  context.depend_on_asset(path)
end