spec/dummy/config/routes.rb in rapidoc-0.0.5 vs spec/dummy/config/routes.rb in rapidoc-0.0.6

- old
+ new

@@ -1,5 +1,8 @@ Dummy::Application.routes.draw do + match 'testing', :to => 'testing#redirect', :constraints => { :id => /[A-Z]\d{5}/ } + match '*tests', :controller => 'testing', :action => 'index' + resources :users, :only => [ :index, :show, :create ] do resources :albums, :only => [ :index, :show, :create, :update, :destroy ] do resources :images, :only => [ :index, :show, :create, :update, :destroy ] end end