class ActionDispatch::Request::Session

mperham/sidekiq#2460 Rack apps can't reuse the Rails session store without this monkeypatch, fixed in Rails 5.

Public Instance Methods

each(&block) click to toggle source
# File lib/sidekiq/web.rb, line 207
def each(&block)
  hash = self.to_hash
  hash.each(&block)
end