load_documents(yaml, &block)
This method is deprecated, use Psych.load_stream instead.
# File ext/psych/lib/psych/deprecated.rb, line 26 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