new(app, constraints, request = Rack::Request)
public

No documentation available.

# File actionpack/lib/action_dispatch/routing/mapper.rb, line 12
        def self.new(app, constraints, request = Rack::Request)
          if constraints.any?
            super(app, constraints, request)
          else
            app
          end
        end