1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Use the inline template's hash as a method key instead of relying on a counter

This commit is contained in:
Joshua Peek 2008-07-05 17:49:49 -05:00
parent 5a3bc6f12f
commit f22ae15a8e

View file

@ -2,10 +2,6 @@ module ActionView #:nodoc:
class InlineTemplate #:nodoc:
include Renderable
# Count the number of inline templates
cattr_accessor :inline_template_count
@@inline_template_count = 0
def initialize(view, source, locals = {}, type = nil)
@view = view
@ -13,14 +9,13 @@ module ActionView #:nodoc:
@extension = type
@locals = locals || {}
@method_key = @source
@method_key = "inline_#{@source.hash.abs}"
@handler = Template.handler_class_for_extension(@extension).new(@view)
end
private
# FIXME: Modifying this shared variable may not thread safe
def method_name_path_segment
"inline_#{@@inline_template_count += 1}"
@method_key
end
end
end