Project

General

Profile

Actions

Feature #6437

closed

Marshaling Time preserve utc_offset but doesn't preserve zone

Added by spastorino (Santiago Pastorino) almost 12 years ago. Updated almost 12 years ago.

Status:
Rejected
Assignee:
-
Target version:
-
[ruby-core:45064]

Description

I was wondering why do we have this in Rails https://github.com/rails/rails/blob/master/activesupport/lib/active_support/core_ext/time/marshal.rb#L1-4.
I thought it was something particular of old Ruby versions but the same happens in trunk.

$ ruby -v
ruby 2.0.0dev (2012-05-02 trunk 35517) [x86_64-darwin11.3.0]
$ irb
irb(main):001:0> t = Time.local(2010)
=> 2010-01-01 00:00:00 -0200
irb(main):002:0> t.zone
=> "UYST"
irb(main):003:0> m = Marshal.load(Marshal.dump(t))
=> 2010-01-01 00:00:00 -0200
irb(main):005:0> m.zone
=> nil

I wonder if there's a reason for that or it's a bug or something wrong.


Related issues 1 (0 open1 closed)

Is duplicate of Ruby master - Bug #3035: Time#zone doesn't round-tripRejected03/29/2010Actions
Actions

Also available in: Atom PDF

Like0
Like0Like0