There's no documentation for this item.
Source Code
# File action_controller/routing/route_set.rb, line 268 def add_named_route(name, path, options = {}) # TODO - is options EVER used? name = options[:name_prefix] + name.to_s if options[:name_prefix] named_routes[name.to_sym] = add_route(path, options) end
<code/>and<pre/>for code samples.