Module Mack::SessionStore
In: lib/mack/sessions/cookie_session_store.rb
lib/mack/sessions/session_store_base.rb
lib/mack/sessions/test_session_store.rb

Methods

expire   expire_all   get   set  

Classes and Modules

Class Mack::SessionStore::Base
Class Mack::SessionStore::Cookie
Class Mack::SessionStore::Test

Public Class methods

Calls the expire method on the specified session store.

[Source]

    # File lib/mack/sessions/session_store_base.rb, line 23
23:       def expire(*args)
24:         self.store.expire(*args)
25:       end

Calls the expire_all method on the specified session store.

[Source]

    # File lib/mack/sessions/session_store_base.rb, line 28
28:       def expire_all(*args)
29:         self.store.expire_all(*args)
30:       end

Calls the get method on the specified session store.

[Source]

    # File lib/mack/sessions/session_store_base.rb, line 13
13:       def get(*args)
14:         self.store.get(*args)
15:       end

Calls the set method on the specified session store.

[Source]

    # File lib/mack/sessions/session_store_base.rb, line 18
18:       def set(*args)
19:         self.store.set(*args)
20:       end

[Validate]