diff options
author | wycats <wycats@gmail.com> | 2010-03-16 21:37:43 -0700 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-03-16 21:37:54 -0700 |
commit | c7388124153e1b1f85965998e5d1c20eed670da8 (patch) | |
tree | 709bff134216693cf18354e8e160bfb7b9ebc09a | |
parent | d69e5616e821afc40efa5936c5ab6e087eb4e0c6 (diff) | |
download | rails-c7388124153e1b1f85965998e5d1c20eed670da8.tar.gz rails-c7388124153e1b1f85965998e5d1c20eed670da8.tar.bz2 rails-c7388124153e1b1f85965998e5d1c20eed670da8.zip |
Another missing require
-rw-r--r-- | actionpack/lib/action_dispatch/routing.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/routing.rb b/actionpack/lib/action_dispatch/routing.rb index 5bc3205c51..c6e942555f 100644 --- a/actionpack/lib/action_dispatch/routing.rb +++ b/actionpack/lib/action_dispatch/routing.rb @@ -1,5 +1,6 @@ require 'active_support/core_ext/object/to_param' require 'active_support/core_ext/regexp' +require 'action_controller/polymorphic_routes' module ActionDispatch # == Routing |