Skip to content

Instantly share code, notes, and snippets.

@arjan
Created November 6, 2015 01:45
Show Gist options
  • Save arjan/9631392a34e02bd031d6 to your computer and use it in GitHub Desktop.
Save arjan/9631392a34e02bd031d6 to your computer and use it in GitHub Desktop.
Automatically encode Timex datetimes as ISO in JSON
defimpl Poison.Encoder, for: Timex.DateTime do
use Timex
def encode(d, _options) do
fmt = DateFormat.format!(d, "{ISO}")
"\"#{fmt}\""
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment