aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/railties
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-02-26 15:00:33 -0800
committerCarlhuda <carlhuda@engineyard.com>2010-02-26 15:04:50 -0800
commit98f77e08278658ec47c9eb2e8f819d781c1eaebf (patch)
tree90fa876eb1f103ab9ca70602512c35ecc281a433 /actionpack/lib/action_controller/railties
parentf10a019452d6864420dd15830073d93dd90de0f1 (diff)
downloadrails-98f77e08278658ec47c9eb2e8f819d781c1eaebf.tar.gz
rails-98f77e08278658ec47c9eb2e8f819d781c1eaebf.tar.bz2
rails-98f77e08278658ec47c9eb2e8f819d781c1eaebf.zip
Rename named_url_helpers to url_helpers and url_helpers to url_for
Diffstat (limited to 'actionpack/lib/action_controller/railties')
-rw-r--r--actionpack/lib/action_controller/railties/url_helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/railties/url_helpers.rb b/actionpack/lib/action_controller/railties/url_helpers.rb
index e726535a4f..ad2a8d4ef3 100644
--- a/actionpack/lib/action_controller/railties/url_helpers.rb
+++ b/actionpack/lib/action_controller/railties/url_helpers.rb
@@ -5,7 +5,7 @@ module ActionController
Module.new do
define_method(:inherited) do |klass|
super(klass)
- klass.send(:include, router.named_url_helpers)
+ klass.send(:include, router.url_helpers)
end
end
end