Sha256: 59464a4e6e524be4654d18a3895b7dfa239023effe1c6d35ad8774c1d81cfffd
Contents?: true
Size: 260 Bytes
Versions: 3
Compression:
Stored size: 260 Bytes
Contents
class Redis class Store < self module Strategy module Yaml private def _dump(object) YAML.dump(object) end def _load(string) YAML.load(string) end end end end end
Version data entries
3 entries across 3 versions & 3 rubygems