Hassan Schroeder wrote: > On Sat, Jul 18, 2009 at 9:26 PM, Dwight > Shackelford<rails-mailing-l...@andreas-s.net> wrote: > >> No route matches "/cookbook" with {:method=>:get} > >> I don't even know how to start diagnosing this. > > Do all your unit/rspec tests still pass?
Don't know what that means. I'm pretty new at this. > > Are there any errors in your logs? I wiped the logs, because data from differing projects were getting written to multiple logs, meaning a specific log under a specific subdirectory included data from other projects too. To get a clean run, I truncated them. Cookbook runs now. Phonebook did not, and no log was written for the attempt to run it. Not that I can find. > > What does `rake routes` show? This is for phonebook (in C:/InstantRails/rails_apps/phonebook) phonebooks GET /phonebooks {:action=>"index", :controller=>"phonebooks"} formatted_phonebooks GET /phonebooks.:format {:action=>"index", :controller=>"phonebooks"} POST /phonebooks {:action=>"create", :controller=>"phonebooks"} POST /phonebooks.:format {:action=>"create", :controller=>"phonebooks"} new_phonebook GET /phonebooks/new {:action=>"new", :controller=>"phonebooks"} formatted_new_phonebook GET /phonebooks/new.:format {:action=>"new", :controller=>"phonebooks"} edit_phonebook GET /phonebooks/:id/edit {:action=>"edit", :controller=>"phonebooks"} formatted_edit_phonebook GET /phonebooks/:id/edit.:format {:action=>"edit", :controller=>"phonebooks"} phonebook GET /phonebooks/:id {:action=>"show", :controller=>"phonebooks"} formatted_phonebook GET /phonebooks/:id.:format {:action=>"show", :controller=>"phonebooks"} PUT /phonebooks/:id {:action=>"update", :controller=>"phonebooks"} PUT /phonebooks/:id.:format {:action=>"update", :controller=>"phonebooks"} DELETE /phonebooks/:id {:action=>"destroy", :controller=>"phonebooks"} DELETE /phonebooks/:id.:format {:action=>"destroy", :controller=>"phonebooks"} /:controller/:action/:id /:controller/:action/:id.:format -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---