aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2010-07-29 20:29:57 +0200
committerPiotr Sarnacki <drogus@gmail.com>2010-09-03 22:59:10 +0200
commit2734d3819f4621bf797ea436d267b102deae67f7 (patch)
tree5da34020bfc9f1ad556696d0f365dcbe1bd517c4 /actionpack
parent937f41919c6033272b40b147f7ac5e888207ac89 (diff)
downloadrails-2734d3819f4621bf797ea436d267b102deae67f7.tar.gz
rails-2734d3819f4621bf797ea436d267b102deae67f7.tar.bz2
rails-2734d3819f4621bf797ea436d267b102deae67f7.zip
This is not needed
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/railties/url_helpers.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/actionpack/lib/action_controller/railties/url_helpers.rb b/actionpack/lib/action_controller/railties/url_helpers.rb
deleted file mode 100644
index 3e6f211cda..0000000000
--- a/actionpack/lib/action_controller/railties/url_helpers.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-module ActionController
- module Railties
-
- module UrlHelpers
- def self.with(routes)
- Module.new do
- define_method(:inherited) do |klass|
- super(klass)
- klass.send(:include, routes.url_helpers)
- end
- end
- end
- end
-
- module MountedHelpers
- def self.with(routes, name = nil)
- Module.new do
- define_method(:inherited) do |klass|
- super(klass)
- klass.send(:include, routes.mounted_helpers(name))
- end
- end
- end
- end
- end
-end