Yomel
May 25, 2015 ยท View on GitHub
libyaml interface for elixir.
Usage
Currently this only supports decoding.
yaml = """
---
number: 100
name: John
"""
Yomel.decode(yaml) #=> {:ok, [%{"number" => 100, "name" => "John"}]}
Yomel.decode_file("./example.yaml")