aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/rendering.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2014-11-23 13:53:01 -0800
committerXavier Noria <fxn@hashref.com>2014-11-24 14:33:50 -0800
commit9685080a7677abfa5d288a81c3e078368c6bb67c (patch)
tree09b3fe1061211ef557cede731794a4bd0ccfcf9e /actionview/lib/action_view/rendering.rb
parentcdd90f39d796986dabf1678b3277b230dbe18961 (diff)
downloadrails-9685080a7677abfa5d288a81c3e078368c6bb67c.tar.gz
rails-9685080a7677abfa5d288a81c3e078368c6bb67c.tar.bz2
rails-9685080a7677abfa5d288a81c3e078368c6bb67c.zip
let mailer templates generate URLs by default [Xavier Noria, Richard Schneeman]
Diffstat (limited to 'actionview/lib/action_view/rendering.rb')
-rw-r--r--actionview/lib/action_view/rendering.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/rendering.rb b/actionview/lib/action_view/rendering.rb
index 5cbdfdf6c0..abd3b77c67 100644
--- a/actionview/lib/action_view/rendering.rb
+++ b/actionview/lib/action_view/rendering.rb
@@ -35,13 +35,13 @@ module ActionView
module ClassMethods
def view_context_class
@view_context_class ||= begin
- include_path_helpers = supports_path?
+ supports_path = supports_path?
routes = respond_to?(:_routes) && _routes
helpers = respond_to?(:_helpers) && _helpers
Class.new(ActionView::Base) do
if routes
- include routes.url_helpers(include_path_helpers)
+ include routes.url_helpers(supports_path)
include routes.mounted_helpers
end