class ActionDispatch::Request::Session

mperham/sidekiq#2460 Rack apps can't reuse the Rails session store without this monkeypatch

Public Instance Methods

each(&block) click to toggle source

:nocov:

# File lib/zhong/web.rb, line 80
def each(&block)
  hash = self.to_hash
  hash.each(&block)
end