Which line of inquiry would you follow after receiving this error message: No route matches [POST] "/burrito/create"?
Check that there is a matching path for "/burrito/create" in you paths.rb file.
Check that there is a post route that matches "/burrito/create" in your routes.rb file.
post
Add the line resources :burritos to your routes.rb file.
resources :burritos
Check that there is a get route that matches "burrito/create" in your paths.rb file.
get