class ActionDispatch::Cookies::CookieJar

def [](name)

Returns the value of the cookie by +name+, or +nil+ if no such cookie exists.
def [](name)
  super(name.to_s)
end