From 867138aa9909e8371340e38db12faf59a43ae31e Mon Sep 17 00:00:00 2001 From: Mihail Evsyukov Date: Thu, 4 Jul 2013 23:41:53 +0300 Subject: [PATCH] Specify request method in guides [ci skip] --- guides/source/action_controller_overview.md | 2 +- guides/source/i18n.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md index f1600fe458..05d8422e56 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -160,7 +160,7 @@ NOTE: Support for parsing XML parameters has been extracted into a gem named `ac The `params` hash will always contain the `:controller` and `:action` keys, but you should use the methods `controller_name` and `action_name` instead to access these values. Any other parameters defined by the routing, such as `:id` will also be available. As an example, consider a listing of clients where the list can show either active or inactive clients. We can add a route which captures the `:status` parameter in a "pretty" URL: ```ruby -match '/clients/:status' => 'clients#index', foo: 'bar' +get '/clients/:status' => 'clients#index', foo: 'bar' ``` In this case, when a user opens the URL `/clients/active`, `params[:status]` will be set to "active". When this route is used, `params[:foo]` will also be set to "bar" just like it was passed in the query string. In the same way `params[:action]` will contain "index". diff --git a/guides/source/i18n.md b/guides/source/i18n.md index 062da3877b..a5bf8b333a 100644 --- a/guides/source/i18n.md +++ b/guides/source/i18n.md @@ -253,7 +253,7 @@ You would probably need to map URLs like these: ```ruby # config/routes.rb -match '/:locale' => 'dashboard#index' +get '/:locale' => 'dashboard#index' ``` Do take special care about the **order of your routes**, so this route declaration does not "eat" other ones. (You may want to add it directly before the `root :to` declaration.)