bscofield / resourceful-plugin-tutorial-code

This is the code that was created during the Resourceful Plugin tutorial at Railsconf Europe 2008 - take it for what it is.

This URL has Read+Write access

resourceful-plugin-tutorial-code / config / routes.rb
100644 12 lines (7 sloc) 0.179 kb
1
2
3
4
5
6
7
8
9
10
11
12
ActionController::Routing::Routes.draw do |map|
  map.resources :ratings
 
  map.resources :comments
 
  map.resources :discussions
 
  map.resources :rooms
  
  map.root :rooms
end