Flowdock
method

commit

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: EncryptedKeyRotatingCookieJar
commit(name, options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/cookies.rb, line 634
        def commit(name, options)
          options[:value] = @encryptor.encrypt_and_sign(serialize(options[:value]), cookie_metadata(name, options))

          raise CookieOverflow if options[:value].bytesize > MAX_COOKIE_SIZE
        end
Register or log in to add new notes.