Class: ActionDispatch::Request::Session::Options
- Inherits:
-
Object
- Object
- ActionDispatch::Request::Session::Options
- Defined in:
- lib/action_dispatch/request/session.rb
Overview
:nodoc:
Class Method Summary collapse
Instance Method Summary collapse
- #[](key) ⇒ Object
- #[]=(k, v) ⇒ Object
- #id(req) ⇒ Object
-
#initialize(by, default_options) ⇒ Options
constructor
A new instance of Options.
- #to_hash ⇒ Object
- #values_at(*args) ⇒ Object
Constructor Details
#initialize(by, default_options) ⇒ Options
Returns a new instance of Options.
56 57 58 59 |
# File 'lib/action_dispatch/request/session.rb', line 56 def initialize(by, ) @by = by @delegate = .dup end |
Class Method Details
.find(req) ⇒ Object
52 53 54 |
# File 'lib/action_dispatch/request/session.rb', line 52 def self.find(req) req.get_header ENV_SESSION_OPTIONS_KEY end |
.set(req, options) ⇒ Object
48 49 50 |
# File 'lib/action_dispatch/request/session.rb', line 48 def self.set(req, ) req.set_header ENV_SESSION_OPTIONS_KEY, end |
Instance Method Details
#[](key) ⇒ Object
61 62 63 |
# File 'lib/action_dispatch/request/session.rb', line 61 def [](key) @delegate[key] end |
#[]=(k, v) ⇒ Object
71 |
# File 'lib/action_dispatch/request/session.rb', line 71 def []=(k, v); @delegate[k] = v; end |
#id(req) ⇒ Object
65 66 67 68 69 |
# File 'lib/action_dispatch/request/session.rb', line 65 def id(req) @delegate.fetch(:id) { @by.send(:extract_session_id, req) } end |
#to_hash ⇒ Object
72 |
# File 'lib/action_dispatch/request/session.rb', line 72 def to_hash; @delegate.dup; end |
#values_at(*args) ⇒ Object
73 |
# File 'lib/action_dispatch/request/session.rb', line 73 def values_at(*args); @delegate.values_at(*args); end |