Flowdock
method

add_route

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: ActionDispatch::Routing::RouteSet

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.1.8) is shown here.

These similar methods exist in v6.1.7.7:

add_route(app, conditions = {}, requirements = {}, defaults = {}, name = nil, anchor = true) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/routing/route_set.rb, line 426
      def add_route(app, conditions = {}, requirements = {}, defaults = {}, name = nil, anchor = true)
        raise ArgumentError, "Invalid route name: '#{name}'" unless name.blank? || name.to_s.match(/^[_a-z]\w*$/)

        if name && named_routes[name]
          raise ArgumentError, "Invalid route name, already in use: '#{name}' \n"              "You may have defined two routes with the same name using the `:as` option, or "              "you may be overriding a route already defined by a resource with the same naming. "              "For the latter, you can restrict the routes created with `resources` as explained here: \n"              "http://guides.rubyonrails.org/routing.html#restricting-the-routes-created"
        end

        path = build_path(conditions.delete(:path_info), requirements, SEPARATORS, anchor)
        conditions = build_conditions(conditions, path.names.map { |x| x.to_sym })

        route = @set.add_route(app, path, conditions, defaults, name)
        named_routes[name] = route if name
        route
      end
Register or log in to add new notes.