Mohamed Boudra

Results 2 comments of Mohamed Boudra

Hi @TreyE, thanks, should be helpful! This is how I was thinking encoding would work: ```elixir iex> Jaxon.Encoder.term_to_events(%{"key" => true}) [:start_object, {:string, "key"}, :colon, {:boolean, true}, :end_object] iex> Jaxon.Encoder.encode([:start_object, {:string,...

hi @bjunc, This could happen if you compile the Elixir app in OS X and then try to run it in a Docker Linux image. Is it possible that you're...