Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 31st, 2012  |  syntax: None  |  size: 0.75 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. how do i go about debugging this?
  2. **Routing Error**
  3. No route matches [GET] "/"
  4.        
  5. <% @snippet.each do |snippet| %>
  6. <h2><%= snippet.title %></h2>
  7. <%end%>
  8.        
  9. Josegomez::Application.routes.draw do
  10. resources :snippets
  11.        
  12. Jose-Gomezs-MacBook-Pro:josegomez josegomez$ rake routes
  13.     snippets GET    /snippets(.:format)          snippets#index
  14.              POST   /snippets(.:format)          snippets#create
  15.  new_snippet GET    /snippets/new(.:format)      snippets#new
  16. edit_snippet GET    /snippets/:id/edit(.:format) snippets#edit
  17.      snippet GET    /snippets/:id(.:format)      snippets#show
  18.              PUT    /snippets/:id(.:format)      snippets#update
  19.              DELETE /snippets/:id(.:format)      snippets#destroy
  20.        
  21. root :to => 'snippets#index'