Skip to content

Commit

Permalink
Merge pull request #134 from igas/master
Browse files Browse the repository at this point in the history
Add missing PATCH in Getting Started Guide
  • Loading branch information
Igor Kapkov committed Apr 8, 2013
2 parents c33c4d1 + d4b4a7e commit 9b5e5c1
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions guides/source/getting_started.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -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 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 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 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 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 have a `posts_path` route, which was created automatically by Rails when we
Expand All @@ -1054,13 +1054,13 @@ received an error before. With your server running you can view your routes by v
```bash ```bash
$ rake routes $ rake routes


posts GET /posts(.:format) posts#index posts GET /posts(.:format) posts#index
posts_new GET /posts/new(.:format) posts#new posts_new GET /posts/new(.:format) posts#new
POST /posts(.:format) posts#create POST /posts(.:format) posts#create
GET /posts/:id(.:format) posts#show GET /posts/:id(.:format) posts#show
GET /posts/:id/edit(.:format) posts#edit GET /posts/:id/edit(.:format) posts#edit
PUT /posts/:id(.:format) posts#update PATCH /posts/:id(.:format) posts#update
root / welcome#index root / welcome#index
``` ```


To fix this, open `config/routes.rb` and modify the `get "posts/:id"` To fix this, open `config/routes.rb` and modify the `get "posts/:id"`
Expand Down Expand Up @@ -1197,6 +1197,7 @@ $ rake routes
new_post GET /posts/new(.:format) posts#new new_post GET /posts/new(.:format) posts#new
edit_post GET /posts/:id/edit(.:format) posts#edit edit_post GET /posts/:id/edit(.:format) posts#edit
post GET /posts/:id(.:format) posts#show post GET /posts/:id(.:format) posts#show
PATCH /posts/:id(.:format) posts#update
PUT /posts/:id(.:format) posts#update PUT /posts/:id(.:format) posts#update
DELETE /posts/:id(.:format) posts#destroy DELETE /posts/:id(.:format) posts#destroy
root / welcome#index root / welcome#index
Expand Down

0 comments on commit 9b5e5c1

Please sign in to comment.