Flowdock
method

load_documents

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: Psych
load_documents(yaml, &block) public

No documentation

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

Hide source
# File ext/psych/lib/psych/deprecated.rb, line 24
  def self.load_documents yaml, &block
    if $VERBOSE
      warn "#{caller[0]}: load_documents is deprecated, use load_stream"
    end
    list = load_stream yaml
    return list unless block_given?
    list.each(&block)
  end
Register or log in to add new notes.