aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-10-20 10:46:27 -0500
committerJoshua Peek <josh@joshpeek.com>2009-10-20 10:46:27 -0500
commitdf68cae0c0837fbf23fdfc3f04162307ffa8f2c1 (patch)
treef827d3eeb9116967531fe962bcbcddc7fb40459a /actionpack/lib/action_dispatch/routing.rb
parent35576a237e2c721dca8be0f8f0d653ae8bc07389 (diff)
downloadrails-df68cae0c0837fbf23fdfc3f04162307ffa8f2c1.tar.gz
rails-df68cae0c0837fbf23fdfc3f04162307ffa8f2c1.tar.bz2
rails-df68cae0c0837fbf23fdfc3f04162307ffa8f2c1.zip
Group together all the old routing dsl logic
Diffstat (limited to 'actionpack/lib/action_dispatch/routing.rb')
-rw-r--r--actionpack/lib/action_dispatch/routing.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing.rb b/actionpack/lib/action_dispatch/routing.rb
index 5a8df76326..0647d051cb 100644
--- a/actionpack/lib/action_dispatch/routing.rb
+++ b/actionpack/lib/action_dispatch/routing.rb
@@ -260,7 +260,7 @@ module ActionDispatch
# Run <tt>rake routes</tt>.
#
module Routing
- autoload :Resources, 'action_dispatch/routing/resources'
+ autoload :Mapper, 'action_dispatch/routing/mapper'
autoload :RouteSet, 'action_dispatch/routing/route_set'
SEPARATORS = %w( / . ? )