Class: Rack::Session::Cookie::SessionId
- Defined in:
- lib/rack/session/cookie.rb
Constant Summary
Constants inherited from SessionId
Instance Attribute Summary collapse
-
#cookie_value ⇒ Object
readonly
Returns the value of attribute cookie_value.
Attributes inherited from SessionId
Instance Method Summary collapse
-
#initialize(session_id, cookie_value) ⇒ SessionId
constructor
A new instance of SessionId.
Methods inherited from SessionId
#empty?, #inspect, #private_id
Constructor Details
#initialize(session_id, cookie_value) ⇒ SessionId
Returns a new instance of SessionId.
158 159 160 161 |
# File 'lib/rack/session/cookie.rb', line 158 def initialize(session_id, ) super(session_id) @cookie_value = end |
Instance Attribute Details
#cookie_value ⇒ Object (readonly)
Returns the value of attribute cookie_value.
156 157 158 |
# File 'lib/rack/session/cookie.rb', line 156 def @cookie_value end |