this is my routes:
PUT /welcome/:id(.:format) welcome#update
I want remove the :id from the route definition.
in other words, I want to use the update function without sending an id.
so in my routes.rb, I tried to define:
resources :welcome
match '/welcome/:id' => 'welcome#update', :via => :put
then I ran rake routes, but nothing has happened.

