Flowdock
method

add_counter_to_local_assigns!

Importance_0
v1.1.6 - Show latest stable - 0 notes - Class: ActionView::Partials
add_counter_to_local_assigns!(partial_name, local_assigns) private

No documentation

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

Hide source
# File actionpack/lib/action_view/partials.rb, line 114
      def add_counter_to_local_assigns!(partial_name, local_assigns)
        counter_name = partial_counter_name(partial_name)
        local_assigns[counter_name] = 1 unless local_assigns.has_key?(counter_name)
      end
Register or log in to add new notes.