1
0
Fork 0
mirror of https://github.com/kbparagua/paloma synced 2023-03-27 23:21:17 -04:00
paloma/test_app/config/routes.rb
2013-10-24 17:33:12 +08:00

24 lines
446 B
Ruby

TestApp::Application.routes.draw do
mount JasmineRails::Engine => "/specs" if defined?(JasmineRails)
root :to => 'main#index'
resources :main, :controller => 'Main' do
member do
get :json_response
get :js_response
get :xml_response
get :file_response
end
end
resources :foo, :controller => 'Foo'
namespace :admin do
resources :bar, :controller => 'Bar'
end
resources :multiple_names
end