Sha256: e8b370f390d644da3afa3f1e400b7011fb56000d6472de843638a60b286309b1
Contents?: true
Size: 388 Bytes
Versions: 3
Compression:
Stored size: 388 Bytes
Contents
module Glue # A general cache key. class CacheKey end # A general cache mechanism. # # This cache system was originaly developed for Nitro. It is used # to cache fragments, og objects (entities), sessions, application # scoped variables and more. class Cache def update(hash) hash.each { |key, value| self[key] = value } end end end # * George Moschovitis <gm@navel.gr>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
glue-0.31.0 | lib/glue/cache.rb |
glue-0.29.0 | lib/glue/cache.rb |
glue-0.30.0 | lib/glue/cache.rb |