class ActionDispatch::Cookies::SignedKeyRotatingCookieJar

def commit(name, options)

def commit(name, options)
  options[:value] = @verifier.generate(serialize(options[:value]), **cookie_metadata(name, options))
  raise CookieOverflow if options[:value].bytesize > MAX_COOKIE_SIZE
end