Sha256: 0f43df1fe84e70d15269b09929de6361d26121ad2c59e34126c541037cb904b6
Contents?: true
Size: 290 Bytes
Versions: 29
Compression:
Stored size: 290 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 ShrinkWrap 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