aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--railties/configs/routes.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/configs/routes.rb b/railties/configs/routes.rb
index 0ff18338d0..7bd368b108 100644
--- a/railties/configs/routes.rb
+++ b/railties/configs/routes.rb
@@ -5,6 +5,10 @@ ActionController::Routing::Routes.draw do |map|
# Here's a sample route:
# map.connect 'products/:id', :controller => 'catalog', :action => 'view'
# Keep in mind you can assign values other than :controller and :action
+
+ # Allow downloading Web Service WSDL as a file with an extension
+ # instead of a file named 'wsdl'
+ map.connect ':controller/service.wsdl', :action => 'wsdl'
# Install the default route as the lowest priority.
map.connect ':controller/:action/:id'