module ActionDispatch::Http::Cache::Response

def etag=(etag)

def etag=(etag)
  key = ActiveSupport::Cache.expand_cache_key(etag)
  @etag = self["ETag"] = %("#{Digest::MD5.hexdigest(key)}")
end