Project

General

Profile

Actions

Feature #17485

closed

Keyword argument for timezone in Time.new

Added by nobu (Nobuyoshi Nakada) about 3 years ago. Updated about 3 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:101780]

Description

Currently, Time.at and Time.now accept a timezone as a keyword argument, but not Time.new.
This means minor arguments cannot be omitted for Time.new.

Time.new(2021, 1, 1, 0, 0, 0, "+09:00") #=> ok: 2021-01-01 00:00:00 +0900
Time.new(2021, 1, 1, "+09:00")          #=> bad: 2021-01-01 09:00:00 +0900
Time.new(2021, 1, "+09:00")             #=> bad: 2021-01-09 00:00:00 +0900
Time.new(2021, "+09:00")                #=> ArgumentError (mon out of range)

Suggest that Time.new should also accept the in: timezone option.

Time.new(2021, 1, 1, in: "+09:00") #=> ok: 2021-01-01 00:00:00 +0900
Time.new(2021, in: "+09:00")       #=> ok: 2021-01-01 00:00:00 +0900

https://github.com/ruby/ruby/pull/4010


Related issues 1 (0 open1 closed)

Related to Ruby master - Bug #17504: Allow UTC offset without colons per ISO-8601ClosedActions
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0