When I create a time object in Ruby 1.9.2 with a date earlier than 1 September 1919, the time zone is set to +0014 rather than to the system zone (+0100) or UTC. Now that I discovered the problem being the early date, and since all I want is a time without a date, I will just use a recent date. But does anyone know why this happens?
ruby-1.9.2-p0 :034 > Time.new(1919,9,1,0,0,0)
=> 1919-09-01 00:46:24 +0100
ruby-1.9.2-p0 :035 > Time.new(1919,8,31,23,59,59)
=> 1919-08-31 23:59:59 +0014
ruby-1.9.2-p0 :036 > Time.new(1919,8,31,1,0,0)
=> 1919-08-31 01:00:00 +0014
Time.new(1919,9,1,0,0,0)=>ArgumentError: wrong number of arguments (6 for 0)– fl00r May 6 '11 at 14:56>> Time.new(1919,9,1,0,0,0) => 1919-09-01 00:00:00 -0500 >> Time.new(1919,8,31,23,59,59) => 1919-08-31 23:59:59 -0500 >> Time.new(1919,8,31,1,0,0) => 1919-08-31 01:00:00 -0500. I'm on ruby 1.9.2 on Windows. – Andy Tinkham May 6 '11 at 14:59