commit(options)
private

No documentation available.

# File actionpack/lib/action_dispatch/middleware/cookies.rb, line 596
        def commit(options)
          options[:value] = @verifier.generate(serialize(options[:value]), expiry_options(options))

          raise CookieOverflow if options[:value].bytesize > MAX_COOKIE_SIZE
        end