Skip to content

Instantly share code, notes, and snippets.

@drewolson
Created March 14, 2015 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewolson/04440d19b837dc6b4652 to your computer and use it in GitHub Desktop.
Save drewolson/04440d19b837dc6b4652 to your computer and use it in GitHub Desktop.
def serialize_date(%Ecto.Date{month: month, day: day, year: year}) do
[
year |> to_string,
month |> to_string |> String.rjust(2, ?0),
day |> to_string |> String.rjust(2, ?0)
] |> Enum.join("-")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment