Flowdock
method

deserialize

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: SerializedCookieJars
deserialize(name, value) protected

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 417
        def deserialize(name, value)
          if value
            if needs_migration?(value)
              Marshal.load(value).tap do |v|
                self[name] = { value: v }
              end
            else
              serializer.load(value)
            end
          end
        end
Register or log in to add new notes.