Adding custom routes to rails
1 2 3 4 | map.resources :notes, :member => { :symbol => :get } # or you could use :collection => { :symbol => :get, :post, :put, :etc } # run "rake routes | mate" in terminal to view your routes (with textmate) |
codes a lot
If the code is inexplicably missing from some of my posts it is because gist.github.com is down at the moment. Check back a little later.
1 2 3 4 | map.resources :notes, :member => { :symbol => :get } # or you could use :collection => { :symbol => :get, :post, :put, :etc } # run "rake routes | mate" in terminal to view your routes (with textmate) |