module ActionDispatch::Http::Cache::Response

def last_modified

def last_modified
  if last = get_header(LAST_MODIFIED)
    Time.httpdate(last)
  end
end