module ActionDispatch::Http::Cache::Request

def if_modified_since

def if_modified_since
  if since = get_header(HTTP_IF_MODIFIED_SINCE)
    Time.rfc2822(since) rescue nil
  end
end