From 8ef4fa95a9475c90fa940d94f1301cc5a2861ead Mon Sep 17 00:00:00 2001 From: Geoff Buesing Date: Mon, 4 Oct 2010 14:25:27 -0500 Subject: [PATCH] require 'uri' in action_controller/url_rewriter --- actionpack/lib/action_controller/url_rewriter.rb | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/actionpack/lib/action_controller/url_rewriter.rb b/actionpack/lib/action_controller/url_rewriter.rb index 552c2ae..e6d99f2 100644 --- a/actionpack/lib/action_controller/url_rewriter.rb +++ b/actionpack/lib/action_controller/url_rewriter.rb @@ -1,3 +1,5 @@ +require 'uri' + module ActionController # In routes.rb one defines URL-to-controller mappings, but the reverse # is also possible: an URL can be generated from one of your routing definitions. -- 1.7.0.5