Flowdock
method

retrieve_template_keys

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: PartialRenderer
retrieve_template_keys() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/renderer/partial_renderer.rb, line 509
    def retrieve_template_keys
      keys = @locals.keys
      keys << @variable if @has_object || @collection
      if @collection
        keys << @variable_counter
        keys << @variable_iteration
      end
      keys
    end
Register or log in to add new notes.