Sha256: 41eb9d2a0af334d9efee53220d3c522e036605fdc8d448f0811a72ee38f04f87

Contents?: true

Size: 342 Bytes

Versions: 10

Compression:

Stored size: 342 Bytes

Contents

require 'pstore'

module Innate
  class Cache
    # Keeps every cache in a separate file like this:
    #
    # /tmp/innate-cache-marshal/delta-manveru-session.marshal
    class Marshal
      include Cache::API
      include Cache::FileBased

      STORE = ::PStore
      DIR = 'innate-cache-marshal'
      EXT = '.marshal'
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
manveru-innate-2009.02.06 lib/innate/cache/marshal.rb
manveru-innate-2009.02.21 lib/innate/cache/marshal.rb
manveru-innate-2009.02.25 lib/innate/cache/marshal.rb
manveru-innate-2009.03.24 lib/innate/cache/marshal.rb
manveru-innate-2009.04.01 lib/innate/cache/marshal.rb
manveru-innate-2009.04.08 lib/innate/cache/marshal.rb
manveru-innate-2009.04.18 lib/innate/cache/marshal.rb
manveru-innate-2009.04 lib/innate/cache/marshal.rb
innate-2009.04.12 lib/innate/cache/marshal.rb
innate-2009.04 lib/innate/cache/marshal.rb