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