Class: ActionDispatch::Request::Session

Inherits:
Object
  • Object
show all
Defined in:
lib/ember_cli_deploy_redis/web.rb

Overview

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

Instance Method Summary collapse

Instance Method Details

#each(&block) ⇒ Object



59
60
61
62
# File 'lib/ember_cli_deploy_redis/web.rb', line 59

def each(&block)
  hash = self.to_hash
  hash.each(&block)
end