module

Time::Format::ISO_8601_DATE

The ISO 8601 date format.

Time::Format::ISO_8601_DATE.parse("2016-02-15")                      # => 2016-02-15 00:00:00Z
Time::Format::ISO_8601_DATE.format(Time.utc(2016, 2, 15, 4, 35, 50)) # => "2016-02-15"

Class methods

format(time : Time, io : IO)

Formats a Time into the given io.

Source
format(time : Time) : String

Formats a Time into a String.

Source
parse(string, location : Time::Location | Nil = Time::Location::UTC) : Time

Parses a string into a Time.

Source