Method: Psych.parse
- Defined in:
- lib/psych.rb
.parse(yaml, filename = nil) ⇒ Object
Parse a YAML string in yaml. Returns the Psych::Nodes::Document. filename is used in the exception message if a Psych::SyntaxError is raised.
Raises a Psych::SyntaxError when a YAML syntax error is detected.
Example:
Psych.parse("---\n - a\n - b") # => #<Psych::Nodes::Document:0x00>
begin
Psych.parse("--- `", "file.txt")
rescue Psych::SyntaxError => ex
ex.file # => 'file.txt'
ex. # => "(file.txt): found character that cannot start any token"
end
See Psych::Nodes for more information about YAML AST.
323 324 325 326 327 328 |
# File 'lib/psych.rb', line 323 def self.parse yaml, filename = nil parse_stream(yaml, filename) do |node| return node end false end |