In the YAML specification it says ... is the EOF If I do:
YAML.load_documents("--- abc\n--- 42\n...\nerror") { |d| puts d }
I should get
abc
42
But I get
abc
42
error
Unfortenely there is not much documentation about the YAML parses. Do I have to tell the parses to honor the EOF, or does the parser not comply to the specs?