class Tilt::Cache

def fetch(*key)

Other tags:
    Yieldreturn: - the value to cache for key

Other tags:
    Yield: -
def fetch(*key)
  @cache.fetch(key) do
    @cache[key] = yield
  end
end