diff options
author | Igor Kapkov <igasgeek@me.com> | 2013-04-08 00:09:19 -0700 |
---|---|---|
committer | Igor Kapkov <igasgeek@me.com> | 2013-04-08 00:09:19 -0700 |
commit | 9b5e5c18437930889d0198e10982bb12557e5f8c (patch) | |
tree | 4dd16be06b88805b26840cdba2e3dfcaf4857ace | |
parent | c33c4d1bb696059a7d459e4090d78a4d45702b7b (diff) | |
parent | d4b4a7e324058d2a50d51197ddd65338d34e477f (diff) | |
download | rails-9b5e5c18437930889d0198e10982bb12557e5f8c.tar.gz rails-9b5e5c18437930889d0198e10982bb12557e5f8c.tar.bz2 rails-9b5e5c18437930889d0198e10982bb12557e5f8c.zip |
Merge pull request #134 from igas/master
Add missing PATCH in Getting Started Guide
-rw-r--r-- | guides/source/getting_started.md | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 3881bb1195..d49a30d02f 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1043,7 +1043,7 @@ REST convention, so to create a new `Post` object it will look for a route named `posts_path`, and to update a `Post` object it will look for a route named `post_path` and pass the current object. Similarly, rails knows that it should create new objects via POST and update them via -PUT. +PATCH. If you run `rake routes` from the console you'll see that we already have a `posts_path` route, which was created automatically by Rails when we @@ -1054,13 +1054,13 @@ received an error before. With your server running you can view your routes by v ```bash $ rake routes - posts GET /posts(.:format) posts#index -posts_new GET /posts/new(.:format) posts#new - POST /posts(.:format) posts#create - GET /posts/:id(.:format) posts#show - GET /posts/:id/edit(.:format) posts#edit - PUT /posts/:id(.:format) posts#update - root / welcome#index + posts GET /posts(.:format) posts#index +posts_new GET /posts/new(.:format) posts#new + POST /posts(.:format) posts#create + GET /posts/:id(.:format) posts#show + GET /posts/:id/edit(.:format) posts#edit + PATCH /posts/:id(.:format) posts#update + root / welcome#index ``` To fix this, open `config/routes.rb` and modify the `get "posts/:id"` @@ -1197,6 +1197,7 @@ $ rake routes new_post GET /posts/new(.:format) posts#new edit_post GET /posts/:id/edit(.:format) posts#edit post GET /posts/:id(.:format) posts#show + PATCH /posts/:id(.:format) posts#update PUT /posts/:id(.:format) posts#update DELETE /posts/:id(.:format) posts#destroy root / welcome#index |