class ActionDispatch::Cookies::CookieJar

def clear(options = {})

Removes all cookies on the client machine by calling delete for each cookie.
def clear(options = {})
  @cookies.each_key { |k| delete(k, options) }
end