module Sprockets::PathDependencyUtils

def entries_with_dependencies(path)

Returns an Array of entry names and a Set of dependency URIs.

path - String directory path

See PathUtils#entries

would invalid the cached return result.
Internal: List directory entries and return a set of dependencies that
def entries_with_dependencies(path)
  return entries(path), file_digest_dependency_set(path)
end