Flowdock
method

load

Importance_2
v1_9_3_392 - Show latest stable - 0 notes - Class: Psych
load(yaml, filename = nil) public

Load yaml in to a Ruby data structure. If multiple documents are provided, the object contained in the first document will be returned. filename will be used in the exception message if any exception is raised while parsing.

Raises a Psych::SyntaxError when a YAML syntax error is detected.

Example:

Psych.load("--- a")             # => 'a'
Psych.load("---\n - a\n - b")   # => ['a', 'b']

begin
  Psych.load("--- `", "file.txt")
rescue Psych::SyntaxError => ex
  ex.file    # => 'file.txt'
  ex.message # => "(foo.txt): found character that cannot start any token"
end
Show source
Register or log in to add new notes.