struct

Time::Location::Zone

Inherits Struct / Value / Object

A Zone represents a time zone offset in effect in a specific Location.

Some zones have a name or abbreviation (such as PDT, CEST). For an unnamed zone the formatted offset should be used as name.

Constants

UTC = new("UTC", 0, false)

This is the UTC time zone with offset +00:00.

It is the only zone offset used in Time::Location::UTC.

Constructors

new(name : String | Nil, offset : Int32, dst : Bool)

Creates a new Zone named name with offset from UTC in seconds. The parameter dst is used to declare this zone as daylight savings time.

If name is nil, the formatted offset will be used as name (see #format).

Raises InvalidTimezoneOffsetError if seconds is outside the supported value range -89_999..93_599 seconds (-24:59:59 to +25:59:59).

Source

Instance methods

dst?

Returns true if this zone offset is daylight savings time.

Source
format(io : IO, with_colon = true, with_seconds = :auto)

Prints #offset to io in the format +HH:mm:ss. When with_colon is false, the format is +HHmmss.

When with_seconds is false, seconds are omitted; when :auto, seconds are omitted if 0.

Source
format(with_colon = true, with_seconds = :auto)

Returns the #offset formatted as +HH:mm:ss. When with_colon is false, the format is +HHmmss.

When with_seconds is false, seconds are omitted; when :auto, seconds are omitted if 0.

Source
inspect(io : IO) : Nil

Prints this Zone to io.

It contains the name, hour-minute-second format (see #format), offset in seconds and "DST" if #dst?, otherwise "STD".

Source
name

Returns the name of the zone.

Source
offset

Returns the offset from UTC in seconds.

Source