module Mize::Configure

def cache(cache)

Set the default cache object to +cache+.
def cache(cache)
  self.default_cache = cache
end

def configure(&block)

configuration context/passing the configuration into it.
Configures Mize by executing a block of code and executing it in
def configure(&block)
  instance_eval(&block)
end