time.getgm â new_time
Instance Public methods
Returns a new Time object representing time in UTC.
1 2 3 4 5 | t = Time .local( 2000 , 1 , 1 , 20 , 15 , 1 ) #=> 2000-01-01 20:15:01 -0600 t.gmt? #=> false y = t.getgm #=> 2000-01-02 02:15:01 UTC y.gmt? #=> true t == y #=> true |
Please login to continue.