Sha256: be4d33641dadc58922f4b68ccd0e7dc9f2f5cf084d579a760d89548b9fe2fb59
Contents?: true
Size: 299 Bytes
Versions: 10
Compression:
Stored size: 299 Bytes
Contents
# typed: ignore # Copyright (c) 2015 Sqreen. All Rights Reserved. # Please refer to our terms for more information: https://www.sqreen.com/terms.html module Sqreen class SinatraMiddleware def initialize(app) @app = app end def call(env) @app.call(env) end end end
Version data entries
10 entries across 10 versions & 1 rubygems