• Stars
    star
    6
  • Rank 2,456,300 (Top 50 %)
  • Language
    Elixir
  • Created about 9 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

読める、読めるぞぉ!!

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