class Sprockets::Context

def link_asset(path)

Returns an Asset or nil.

easy to construct a link to it.
including it. The target asset is returned from this function making it
`link_asset` declares an external dependency on an asset without directly
def link_asset(path)
  asset = depend_on_asset(path)
  @links << asset.uri
  asset
end