module EacRubyUtils::SimpleCache

def respond_to_missing?(method, include_all = false)

def respond_to_missing?(method, include_all = false)
  if method.to_s.end_with?('_uncached')
    super
  else
    respond_to?("#{method}_uncached", true) || super
  end
end