Sha256: 6bae787baf18af49ffca39e4c803d9b26436e4ca35f4524a3897c3639a6b7306
Contents?: true
Size: 254 Bytes
Versions: 9
Compression:
Stored size: 254 Bytes
Contents
module Toy module Middleware class IdentityMap def initialize(app) @app = app end def call(env) Toy.identity_map.clear @app.call(env) ensure Toy.identity_map.clear end end end end
Version data entries
9 entries across 9 versions & 1 rubygems