Sha256: dd21912951bc6c6ec8f7676b18f350d198ab7a1231484d8daaccd397745b5969
Contents?: true
Size: 538 Bytes
Versions: 18
Compression:
Stored size: 538 Bytes
Contents
# Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. require 'innate/cache' module Ramaze Cache = Innate::Cache class Cache autoload :LocalMemCache, 'ramaze/cache/localmemcache' autoload :MemCache, 'ramaze/cache/memcache' autoload :Sequel, 'ramaze/cache/sequel' def self.clear_after_reload action.clear if respond_to?(:action) action_value.clear if respond_to?(:action_value) end end end
Version data entries
18 entries across 18 versions & 4 rubygems