Flowdock
method

collection_by_cache_keys

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: CollectionCaching
collection_by_cache_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/collection_caching.rb, line 28
      def collection_by_cache_keys
        @collection.each_with_object({}) do |item, hash|
          hash[expanded_cache_key(item)] = item
        end
      end
Register or log in to add new notes.