mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Removed deprecated |map| block argument from routing docs since it is no longer generated in edge Rails config/routes.rb
Didn't touch plugins guide since I'm not too clear on how routes work in plugins.
This commit is contained in:
parent
c81e476d6d
commit
1a35b6215f
4 changed files with 4 additions and 4 deletions
|
@ -31,7 +31,7 @@ module ActionDispatch
|
||||||
# Think of creating routes as drawing a map for your requests. The map tells
|
# Think of creating routes as drawing a map for your requests. The map tells
|
||||||
# them where to go based on some predefined pattern:
|
# them where to go based on some predefined pattern:
|
||||||
#
|
#
|
||||||
# AppName::Application.routes.draw do |map|
|
# AppName::Application.routes.draw do
|
||||||
# Pattern 1 tells some request to go to one place
|
# Pattern 1 tells some request to go to one place
|
||||||
# Pattern 2 tell them to go to another
|
# Pattern 2 tell them to go to another
|
||||||
# ...
|
# ...
|
||||||
|
|
|
@ -10,7 +10,7 @@ module ActionView
|
||||||
# Full usage example:
|
# Full usage example:
|
||||||
#
|
#
|
||||||
# config/routes.rb:
|
# config/routes.rb:
|
||||||
# Basecamp::Application.routes.draw do |map|
|
# Basecamp::Application.routes.draw do
|
||||||
# resources :posts
|
# resources :posts
|
||||||
# root :to => "posts#index"
|
# root :to => "posts#index"
|
||||||
# end
|
# end
|
||||||
|
|
|
@ -325,7 +325,7 @@ We need to do this as Rails will deliver any static file in the +public+ directo
|
||||||
Now, you have to tell Rails where your actual home page is located. Open the file +config/routes.rb+ in your editor. This is your application's _routing file_ which holds entries in a special DSL (domain-specific language) that tells Rails how to connect incoming requests to controllers and actions. There are only comments in this file, so we need to add at the top the following:
|
Now, you have to tell Rails where your actual home page is located. Open the file +config/routes.rb+ in your editor. This is your application's _routing file_ which holds entries in a special DSL (domain-specific language) that tells Rails how to connect incoming requests to controllers and actions. There are only comments in this file, so we need to add at the top the following:
|
||||||
|
|
||||||
<ruby>
|
<ruby>
|
||||||
Blog::Application.routes.draw do |map|
|
Blog::Application.routes.draw do
|
||||||
|
|
||||||
root :to => "home#index"
|
root :to => "home#index"
|
||||||
|
|
||||||
|
|
|
@ -287,7 +287,7 @@ You most probably have something like this in one of your applications:
|
||||||
|
|
||||||
<ruby>
|
<ruby>
|
||||||
# config/routes.rb
|
# config/routes.rb
|
||||||
Yourapp::Application.routes.draw do |map|
|
Yourapp::Application.routes.draw do
|
||||||
root :to => "home#index"
|
root :to => "home#index"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue