I am new to Ruby and working on a project which needs to read a
SystemTime (milliseconds from 1 Jan 1970) from an xml file and convert
it to a DateTime.
Unfortunately I cant seem to find any method for doing so in either
the Date or Time classes. Does such a function exist? If not, is there
any other way to do this?
Of course once I have clicked send, I find the solution imediately.
Time.at wasnt working because one of my Unix Times was corrupt, of
course it was the very first one so I never realised the rest of them
were working since it bombed out with a Bignum error on the very first
conversion.
Thanks anyway
Marc
ยทยทยท
On Dec 18, 2:50 pm, "Marc Howell" <darklin...@gmail.com> wrote:
Hi All
I am new to Ruby and working on a project which needs to read a
SystemTime (milliseconds from 1 Jan 1970) from an xml file and convert
it to a DateTime.
Unfortunately I cant seem to find any method for doing so in either
the Date or Time classes. Does such a function exist? If not, is there
any other way to do this?