Sha256: a156269ce989962574c176fe9a0b7b5279e94413c54cf178e928fd81dd900c42
Contents?: true
Size: 273 Bytes
Versions: 16
Compression:
Stored size: 273 Bytes
Contents
class Rack::Bug 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
16 entries across 16 versions & 5 rubygems