1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Removed confusing statements about routes in getting started guide [ci skip]

- routes for CRUD already exists as `resources :posts` is in
  `config/routes.rb`
- So we don't have to add any new route in the `config/routes.rb`
- As per #11644, the adding of routes which are already there confuses user, so here its
  changed to referring output of `rake routes`
This commit is contained in:
Prathamesh Sonpatki 2013-07-30 21:10:36 +05:30
parent 3baee0982d
commit e2bbc2bb2a

View file

@ -575,7 +575,7 @@ If you submit the form again now, Rails will complain about not finding
the `show` action. That's not very useful though, so let's add the the `show` action. That's not very useful though, so let's add the
`show` action before proceeding. `show` action before proceeding.
First we need to add a new `route` in `config/routes.rb`. As we have seen in the output of `rake routes`, the route for `show` action is as follows:
```ruby ```ruby
post GET /posts/:id(.:format) posts#show post GET /posts/:id(.:format) posts#show
@ -654,7 +654,7 @@ For more information, refer to
### Listing all posts ### Listing all posts
We still need a way to list all our posts, so let's do that. We still need a way to list all our posts, so let's do that.
We'll use a specific route from `config/routes.rb`: The route for this as per output of `rake routes` is:
```ruby ```ruby
posts GET /posts(.:format) posts#index posts GET /posts(.:format) posts#index
@ -1071,7 +1071,7 @@ Then do the same for the `app/views/posts/edit.html.erb` view:
We're now ready to cover the "D" part of CRUD, deleting posts from the We're now ready to cover the "D" part of CRUD, deleting posts from the
database. Following the REST convention, the route for database. Following the REST convention, the route for
deleting posts in the `config/routes.rb` is: deleting posts as per output of `rake routes` is:
```ruby ```ruby
DELETE /posts/:id(.:format) posts#destroy DELETE /posts/:id(.:format) posts#destroy