This method is deprecated or moved on the latest stable version. The last existing version (v2_4_6) is shown here.
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