From b2e52833ae479f433d9df9f918a8802d4ae4138e Mon Sep 17 00:00:00 2001 From: Jay Pignata Date: Thu, 3 Sep 2009 13:26:03 -0400 Subject: [PATCH] CookieStore should not be derived from Hash - reverting --- .../middleware/session/cookie_store.rb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb b/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb index 0e477ba..bd552b4 100644 --- a/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb +++ b/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb @@ -37,7 +37,7 @@ module ActionDispatch # "rake secret" and set the key in config/environment.rb. # # Note that changing digest or secret invalidates all existing sessions! - class CookieStore < Hash + class CookieStore # Cookies can typically store 4096 bytes. MAX = 4096 SECRET_MIN_LENGTH = 30 # characters -- 1.6.4.2