Actions
Feature #6437
closedMarshaling Time preserve utc_offset but doesn't preserve zone
Status:
Rejected
Assignee:
-
Target version:
-
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.
Updated by spastorino (Santiago Pastorino) over 12 years ago
Actually this is a dup of #3035
Updated by drbrain (Eric Hodel) over 12 years ago
- Status changed from Open to Rejected
Actions
Like0
Like0Like0