aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/renderable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/renderable.rb')
-rw-r--r--actionpack/lib/action_view/renderable.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/renderable.rb b/actionpack/lib/action_view/renderable.rb
index 2e2fff44c6..3a30e603fe 100644
--- a/actionpack/lib/action_view/renderable.rb
+++ b/actionpack/lib/action_view/renderable.rb
@@ -12,7 +12,7 @@ module ActionView
end
def method
- ['_run', @extension, @method_segment].compact.join('_').to_sym
+ ['_run', @extension, @method_segment, local_assigns_keys].compact.join('_').to_sym
end
private
@@ -28,5 +28,11 @@ module ActionView
@prepared = true
end
end
+
+ def local_assigns_keys
+ if @locals && @locals.any?
+ "locals_#{@locals.keys.map { |k| k.to_s }.sort.join('_')}"
+ end
+ end
end
end