method

serve

serve(req)
public

No documentation available.

# File actionpack/lib/action_dispatch/routing/mapper.rb, line 46
        def serve(req)
          return [ 404, { "X-Cascade" => "pass" }, [] ] unless matches?(req)

          @strategy.call @app, req
        end