module Sprockets::Paths

def prepend_path(path)

Paths at the end of the `Array` have the least priority.

Prepend a `path` to the `paths` list.
def prepend_path(path)
  @trail.prepend_path(path)
end