Using Ruby 1.9.2 and Rail 3 on Mac Snow leopard
ruby-1.9.2-p290 :001 > Date.today
=> Sun, 25 Sep 2011
ruby-1.9.2-p290 :002 > Date.tomorrow
=> Tue, 27 Sep 2011
Is there maybe something wrong with the ruby date class or is this something to do with the way i installed ruby?
Edit:
ruby-1.9.2-p290 :039 > Date.current
=> Mon, 26 Sep 2011
ruby-1.9.2-p290 :040 > DateTime.now
=> Sun, 25 Sep 2011 20:47:01 -0500
Ok so the rails Date class seems a little buggy. The DateTime class appears to work fine though. Thanks derp and Adam
tomorrowmethod meaning that one is from rails, in your case probablytodaycomes from ruby buttomorrowfrom rails and there may be a discrepancy on what timezone is considered for each one. TryDate.currentand see if that works againstDate.tomorrow– derp Sep 26 '11 at 0:56