# Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. module Ramaze autoload :MemoryCache, "ramaze/cache/memory.rb" autoload :YAMLStoreCache, "ramaze/cache/yaml_store.rb" autoload :MemcachedCache, "ramaze/cache/memcached.rb" Cache = nil SessionCache = nil end