Chronic.parse("1234") should result in tomorrow at 12:34 PM (assuming it's after 12:34PM local time), but results in tomorrow at 12:34 AM:
irb(main):003:0> Chronic.parse("1234")
=> Wed Oct 14 00:34:00 -0700 2009
I just forked this repo and started the tests and got the following failing tests:
1) Failure:
test_days_in_november(TestParsing) [./test/test_parsing.rb:699]:
<Sun Nov 04 11:00:00 +0100 2007> expected but was
<Sun Nov 04 12:00:00 +0100 2007>.
2) Failure:
test_parse_guess_o_r_g_r(TestParsing) [./test/test_parsing.rb:583]:
<Fri Mar 16 12:30:00 +0100 2007> expected but was
<Fri Mar 16 11:30:00 +0100 2007>.
3) Failure:
test_seasons(TestParsing) [./test/test_parsing.rb:662]:
<Tue Mar 20 00:00:00 +0100 2007> expected but was
<Tue Mar 20 23:00:00 +0100 2007>.
I'm working in the time GMT +1 (western europe) could this be the problem?