class Sprockets::Asset

def fresh?

Subclass must override `fresh?` or `stale?`.

Used to test if cached models need to be rebuilt.

digest to the inmemory model.
Checks if Asset is fresh by comparing the actual mtime and
def fresh?
  !stale?
end