Sha256: 43b1b3f481ca5eda2af9d860475288828747fb515e5b18195c4340c398967577
Contents?: true
Size: 423 Bytes
Versions: 22
Compression:
Stored size: 423 Bytes
Contents
module MDQT class CLI class CacheControl class << self def caching_on?(options) return false if cache_type(options) == :none true end def cache_type(options) return :none if options.refresh return :memcache if options.cache && options.memcache return :file if options.cache :none end end end end end
Version data entries
22 entries across 22 versions & 2 rubygems