module EacRubyUtils::SimpleCache

def method_missing(method, *args, &block)

def method_missing(method, *args, &block)
  if respond_to?(uncached_method_name(method), true)
    call_method_with_cache(method, args, &block)
  else
    super
  end
end