method

match_root_route

match_root_route(options)
private

No documentation available.

# File actionpack/lib/action_dispatch/routing/mapper.rb, line 1927
        def match_root_route(options)
          name = has_named_route?(:root) ? nil : :root
          match '/', { :as => name, :via => :get }.merge!(options)
        end