Sha256: 8fa3817021e41678a1d0adfe0a38b382cacc40631019777af2317811473c7a5b
Contents?: true
Size: 310 Bytes
Versions: 17
Compression:
Stored size: 310 Bytes
Contents
module Shutterbug module CacheManager class NoCache attr_accessor :entries def initialize @entries = {} end def find(key) return @entries[key] end def add_entry(cache_entry) @entries[cache_entry.key] = cache_entry end end end end
Version data entries
17 entries across 17 versions & 1 rubygems