method
serializer
v4.1.8 -
Show latest stable
- Class:
ActionDispatch::Cookies::SerializedCookieJars
serializer()protected
No documentation available.
# File actionpack/lib/action_dispatch/middleware/cookies.rb, line 433
def serializer
serializer = @options[:serializer] || :marshal
case serializer
when :marshal
Marshal
when :json, :hybrid
JsonSerializer
else
serializer
end
end