Sha256: bb9ba1b9bedaa0deaa486da5ec4ff0cc0dfa33fd52b4d2d562a0eb7366cb13e8
Contents?: true
Size: 215 Bytes
Versions: 1
Compression:
Stored size: 215 Bytes
Contents
module Patterns class FilterUrlByRemoteUser def initialize(app) @app = app end def call(env) [404, { 'Content-Type' => 'text/plain', 'Content-Length' => '0' }, ['']] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kissifer-filter-url-by-remote-user-0.0.2 | lib/filter_url_by_remote_user.rb |