method

match_head_routes

match_head_routes(routes, req)
private

No documentation available.

# File actionpack/lib/action_dispatch/journey/router.rb, line 123
        def match_head_routes(routes, req)
          verb_specific_routes = routes.reject { |route| route.verb == // }
          head_routes = match_routes(verb_specific_routes, req)

          if head_routes.empty?
            begin
              req.request_method = "GET"
              match_routes(routes, req)
            ensure
              req.request_method = "HEAD"
            end
          else
            head_routes
          end
        end