Sha256: 81bc6954d906528969a7380057391705adcf208ca8220634d885e7b1be5c5d66
Contents?: true
Size: 261 Bytes
Versions: 81
Compression:
Stored size: 261 Bytes
Contents
module Dragonfly class CookieMonster def initialize(app) @app = app end def call(env) status, headers, body = @app.call(env) headers.delete('Set-Cookie') if env['dragonfly.job'] [status, headers, body] end end end
Version data entries
81 entries across 81 versions & 2 rubygems