I am new to RESTful stuff. But, I want to use it in my rails app. When I add this to my routes.rb map.resources :notes
I get routes to these methods created:
- index
- create
- new
- edit
- show
- update
- destroy
What I am wondering is what is the difference between edit/update and create/new? Is there any standard definitions of how these method pairs vary and what each one does?