Sha256: dac7ad264a7f91d1d0a1ea4ab7ea1c5b74a78fec533828cf9520fc2dcdf5cc36
Contents?: true
Size: 249 Bytes
Versions: 76
Compression:
Stored size: 249 Bytes
Contents
module ActiveSupport module Cache class NullStore < Store def read_entry(name, options) return nil end def write_entry(name, value, options) end def delete_entry(name, options) end end end end
Version data entries
76 entries across 76 versions & 1 rubygems