Skip to content

Joe-noh/yomel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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