]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/router.rb
Change directions start to say 'on road' rather than 'at end of road'
[rails.git] / config / initializers / router.rb
index 2987e424af8a5f282df92cb6312207e39dd11049..4357a87f25f47ea0cc98c8da6d9f155ed8dad750 100644 (file)
@@ -1,18 +1,14 @@
 # Some versions of ruby seem to accidentally force the encoding
 # as part of normalize_path and some don't
 
-module ActionDispatch
-  module Journey
-    class Router
-      class Utils
-        def self.normalize_path_with_encoding(path)
-          normalize_path_without_encoding(path).force_encoding("UTF-8")
-        end
-
-        class << self
-          alias_method_chain :normalize_path, :encoding
-        end
+module OpenStreetMap
+  module Router
+    module ForceEncoding
+      def normalize_path(path)
+        super(path).force_encoding("UTF-8")
       end
     end
   end
 end
+
+ActionDispatch::Journey::Router::Utils.singleton_class.prepend(OpenStreetMap::Router::ForceEncoding)