unicorn 4.3.1 - shutdown() fixes
[unicorn.git] / t / rails3-app / config / routes.rb
blob03e3c231e45a7fea84269ccc29c22d03033f406e
1 App::Application.routes.draw do |map|
2   # The priority is based upon order of creation:
3   # first created -> highest priority.
5   # Sample of regular route:
6   #   match 'products/:id' => 'catalog#view'
7   # Keep in mind you can assign values other than :controller and :action
9   # Sample of named route:
10   #   match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11   # This route can be invoked with purchase_url(:id => product.id)
13   # Sample resource route (maps HTTP verbs to controller actions automatically):
14   #   resources :products
16   # Sample resource route with options:
17   #   resources :products do
18   #     member do
19   #       get :short
20   #       post :toggle
21   #     end
22   #
23   #     collection do
24   #       get :sold
25   #     end
26   #   end
28   # Sample resource route with sub-resources:
29   #   resources :products do
30   #     resources :comments, :sales
31   #     resource :seller
32   #   end
34   # Sample resource route with more complex sub-resources
35   #   resources :products do
36   #     resources :comments
37   #     resources :sales do
38   #       get :recent, :on => :collection
39   #     end
40   #   end
42   # Sample resource route within a namespace:
43   #   namespace :admin do
44   #     # Directs /admin/products/* to Admin::ProductsController
45   #     # (app/controllers/admin/products_controller.rb)
46   #     resources :products
47   #   end
49   # You can have the root of your site routed with "root"
50   # just remember to delete public/index.html.
51   # root :to => "welcome#index"
53   # See how all your routes lay out with "rake routes"
55   # This is a legacy wild controller route that's not recommended for RESTful applications.
56   # Note: This route will make all actions in every controller accessible via GET requests.
57   # match ':controller(/:action(/:id(.:format)))'
58 end