module Plyushkin::Cache

Public Class Methods

cache() click to toggle source
# File lib/plyushkin/cache.rb, line 3
def cache
  @cache ||= Plyushkin::Cache::Stub.new
end
cache=(value) click to toggle source
# File lib/plyushkin/cache.rb, line 7
def cache=(value)
  @cache = value
end