A change-positive Ruby web application architecture
icelab.com.au4 pointsby timriley0 comments
match 'jobs' => 'jobs#index', :via => :get, :as => :jobs
match 'jobs' => 'jobs#create', :via => :post
resources :job, :controller => 'jobs', :except => [:index, :create]
For a bunch of resources, it's certainly much easier to use the one-line `tasteful_resources` helper instead.