Skip to content

Instantly share code, notes, and snippets.

@flockonus
Created February 5, 2011 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save flockonus/812840 to your computer and use it in GitHub Desktop.
Save flockonus/812840 to your computer and use it in GitHub Desktop.
rake routes
rake routes
(in /home/fps/workspace3/peded)
admin_pay_methods GET /admin/pay_methods(.:format) {:action=>"index", :controller=>"admin/pay_methods"}
POST /admin/pay_methods(.:format) {:action=>"create", :controller=>"admin/pay_methods"}
new_admin_pay_method GET /admin/pay_methods/new(.:format) {:action=>"new", :controller=>"admin/pay_methods"}
edit_admin_pay_method GET /admin/pay_methods/:id/edit(.:format) {:action=>"edit", :controller=>"admin/pay_methods"}
admin_pay_method GET /admin/pay_methods/:id(.:format) {:action=>"show", :controller=>"admin/pay_methods"}
PUT /admin/pay_methods/:id(.:format) {:action=>"update", :controller=>"admin/pay_methods"}
DELETE /admin/pay_methods/:id(.:format) {:action=>"destroy", :controller=>"admin/pay_methods"}
admin_restaurant_categories GET /admin/restaurant_categories(.:format) {:action=>"index", :controller=>"admin/restaurant_categories"}
POST /admin/restaurant_categories(.:format) {:action=>"create", :controller=>"admin/restaurant_categories"}
new_admin_restaurant_category GET /admin/restaurant_categories/new(.:format) {:action=>"new", :controller=>"admin/restaurant_categories"}
edit_admin_restaurant_category GET /admin/restaurant_categories/:id/edit(.:format) {:action=>"edit", :controller=>"admin/restaurant_categories"}
admin_restaurant_category GET /admin/restaurant_categories/:id(.:format) {:action=>"show", :controller=>"admin/restaurant_categories"}
PUT /admin/restaurant_categories/:id(.:format) {:action=>"update", :controller=>"admin/restaurant_categories"}
DELETE /admin/restaurant_categories/:id(.:format) {:action=>"destroy", :controller=>"admin/restaurant_categories"}
admin_restaurant_menus GET /admin/restaurants/:restaurant_id/menus(.:format) {:action=>"index", :controller=>"admin/menus"}
POST /admin/restaurants/:restaurant_id/menus(.:format) {:action=>"create", :controller=>"admin/menus"}
new_admin_restaurant_menu GET /admin/restaurants/:restaurant_id/menus/new(.:format) {:action=>"new", :controller=>"admin/menus"}
edit_admin_restaurant_menu GET /admin/restaurants/:restaurant_id/menus/:id/edit(.:format) {:action=>"edit", :controller=>"admin/menus"}
admin_restaurant_menu GET /admin/restaurants/:restaurant_id/menus/:id(.:format) {:action=>"show", :controller=>"admin/menus"}
PUT /admin/restaurants/:restaurant_id/menus/:id(.:format) {:action=>"update", :controller=>"admin/menus"}
DELETE /admin/restaurants/:restaurant_id/menus/:id(.:format) {:action=>"destroy", :controller=>"admin/menus"}
admin_restaurant_menu_items GET /admin/restaurants/:restaurant_id/menu_items(.:format) {:action=>"index", :controller=>"admin/menu_items"}
POST /admin/restaurants/:restaurant_id/menu_items(.:format) {:action=>"create", :controller=>"admin/menu_items"}
new_admin_restaurant_menu_item GET /admin/restaurants/:restaurant_id/menu_items/new(.:format) {:action=>"new", :controller=>"admin/menu_items"}
edit_admin_restaurant_menu_item GET /admin/restaurants/:restaurant_id/menu_items/:id/edit(.:format) {:action=>"edit", :controller=>"admin/menu_items"}
admin_restaurant_menu_item GET /admin/restaurants/:restaurant_id/menu_items/:id(.:format) {:action=>"show", :controller=>"admin/menu_items"}
PUT /admin/restaurants/:restaurant_id/menu_items/:id(.:format) {:action=>"update", :controller=>"admin/menu_items"}
DELETE /admin/restaurants/:restaurant_id/menu_items/:id(.:format) {:action=>"destroy", :controller=>"admin/menu_items"}
admin_restaurants GET /admin/restaurants(.:format) {:action=>"index", :controller=>"admin/restaurants"}
POST /admin/restaurants(.:format) {:action=>"create", :controller=>"admin/restaurants"}
new_admin_restaurant GET /admin/restaurants/new(.:format) {:action=>"new", :controller=>"admin/restaurants"}
edit_admin_restaurant GET /admin/restaurants/:id/edit(.:format) {:action=>"edit", :controller=>"admin/restaurants"}
admin_restaurant GET /admin/restaurants/:id(.:format) {:action=>"show", :controller=>"admin/restaurants"}
PUT /admin/restaurants/:id(.:format) {:action=>"update", :controller=>"admin/restaurants"}
DELETE /admin/restaurants/:id(.:format) {:action=>"destroy", :controller=>"admin/restaurants"}
f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment