Facebook
From Red Peccary, 9 Years ago, written in JavaScript.
Embed
Download Paste or View Raw
Hits: 473
  1. # root_path, root_url
  2. map.root :conditions => { :method => :get },
  3.   :controller => 'leniwce',
  4.   :action => 'index'
  5.  
  6. # leniwce_url(:number)
  7. map.leniwce ':number',
  8.   :conditions => { :method => :get },
  9.   :controller => 'leniwce',
  10.   :action => 'show',
  11.   :number => /\d+/
  12.  
  13. # create_path
  14. map.create '',
  15.   :conditions => { :method => :post },
  16.   :controller => 'leniwce',
  17.   :action => 'create'