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