When I do a rake routes, I see that helper methods are available for certain REST actions for my user model such as new_user, edit_user so I can use methods like new_user_path, edit_user_path etc but they are not available for update or destroy action. To invoke the destroy action, I have to do something like this
link_to ‘Destroy’, user_path, :method => :delete
Anyone know why this is the case?