Class: Pakyow::Application::Connection::Session::Base
- Inherits:
-
Support::IndifferentHash
- Object
- Support::IndifferentHash
- Pakyow::Application::Connection::Session::Base
- Defined in:
- lib/pakyow/application/connection/session/base.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(connection, options, values = Support::IndifferentHash.new) ⇒ Base
constructor
A new instance of Base.
-
#pp(*args) ⇒ Object
Fixes an issue using pp inside a delegator.
Constructor Details
#initialize(connection, options, values = Support::IndifferentHash.new) ⇒ Base
Returns a new instance of Base.
10 11 12 13 |
# File 'lib/pakyow/application/connection/session/base.rb', line 10 def initialize(connection, , values = Support::IndifferentHash.new) @connection, = connection, super(values) end |
Instance Method Details
#pp(*args) ⇒ Object
Fixes an issue using pp inside a delegator.
17 18 19 |
# File 'lib/pakyow/application/connection/session/base.rb', line 17 def pp(*args) Kernel.pp(*args) end |