class Sprockets::Cache::GetWrapper
def clear(options=nil)
def clear(options=nil) # dalli has a #flush method so try it if cache.respond_to?(:flush) cache.flush(options) else cache.clear(options) end true end
def clear(options=nil) # dalli has a #flush method so try it if cache.respond_to?(:flush) cache.flush(options) else cache.clear(options) end true end