Flowdock
method

collection_from_options

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: PartialRenderer
collection_from_options() 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 406
      def collection_from_options
        if @options.key?(:collection)
          collection = @options[:collection]
          collection ? collection.to_a : []
        end
      end
Register or log in to add new notes.