Sha256: 7c6ffc6229050c5b3404a7928779393a4171902ebe94685d749e349d218034ca
Contents?: true
Size: 297 Bytes
Versions: 29
Compression:
Stored size: 297 Bytes
Contents
# typed: true # 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
29 entries across 29 versions & 1 rubygems