clear(options = {})
Removes all cookies on the client machine by calling delete for each cookie
# File actionpack/lib/action_dispatch/middleware/cookies.rb, line 195 def clear(options = {}) @cookies.each_key{ |k| delete(k, options) } end