rails--rails/actionpack/lib
José Valim b2c2b0ce45 Rails router automatically calculated for you the controller and named routes in the following scenarios:
match "home/about"                 #=> maps to home#about with named route home_about_path
  match "about"                      #=> does not work because it cannot guess the controller
  match "about" => "home#about"      #=> maps to home#about with named route home_about_path
  match "home/about", :as => "about" #=> maps to home#about with named route about_path
2010-03-26 15:51:51 +01:00
..
abstract_controller
action_controller
action_dispatch Rails router automatically calculated for you the controller and named routes in the following scenarios: 2010-03-26 15:51:51 +01:00
action_pack
action_view
abstract_controller.rb
action_controller.rb
action_dispatch.rb
action_pack.rb
action_view.rb