Sha256: 9e8e80dffbbc6ef308fc6e26812d3c39bcbcfa936d0a8f200b8063a150da9883
Contents?: true
Size: 279 Bytes
Versions: 34
Compression:
Stored size: 279 Bytes
Contents
module Rack::Insight class RackStaticBugAvoider def initialize(app, static_app) @app = app @static_app = static_app end def call(env) if env["PATH_INFO"] @static_app.call(env) else @app.call(env) end end end end
Version data entries
34 entries across 34 versions & 1 rubygems