Sha256: 972cbb7fd231eec38579e8c2e327fc4c5442c793bad9c94a5cfe9514aae90f06
Contents?: true
Size: 292 Bytes
Versions: 10
Compression:
Stored size: 292 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 ShrinkWrap 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