module Sprockets::PathDigestUtils

def files_digest(paths)

Returns String digest bytes.

paths - Array of filename or directory paths.

Internal: Compute digest for a set of paths.
def files_digest(paths)
  self.digest(paths.map { |path| self.file_digest(path) })
end