module Time::Format::RFC_2822

Overview

TheRFC 2822 datetime format.

This is also compatible toRFC 882 andRFC 1123.

Time::Format::RFC_2822.format(Time.utc(2016, 2, 15, 4, 35, 50)) # => "Mon, 15 Feb 2016 04:35:50 +0000"

Time::Format::RFC_2822.parse("Mon, 15 Feb 2016 04:35:50 +0000") # => 2016-02-15 04:35:50.0 +00:00
Time::Format::RFC_2822.parse("Mon, 15 Feb 2016 04:35:50 UTC")   # => 2016-02-15 04:35:50Z

Defined in:

time/format/custom/rfc_2822.cr

Class Method Summary

Class Method Detail

def self.format(time : Time, io : IO) #

Formats aTime into the givenio.


def self.format(time : Time) : String #

Formats aTime into aString.


def self.parse(string, kind = Time::Location::UTC) : Time #

Parses a string into aTime.