You have the developer/:user_name/delete route set to use "delete" as the method, rather than "get"
Since browsers usually don't support sending requests other than post or get, you'll need to pass a "_method=delete" parameter to that route Check out the rails guide on routing for more information: http://guides.rubyonrails.org/routing.html#resources-on-the-web -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/jAtXSzkQk9sJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

