method

collection_from_options

rails latest stable - Class: ActionView::Renderer
collection_from_options(options)
private

No documentation available.

# File actionview/lib/action_view/renderer/renderer.rb, line 102
      def collection_from_options(options)
        if options.key?(:collection)
          collection = options[:collection]
          collection || []
        end
      end