Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 253 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 253 Bytes

Yomel

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")