public
Fork of mojombo/chronic
Description: "Chronic is a pure Ruby natural language date parser." + improvements, corrections, speedups, and additions
Homepage: http://chronic.rubyforge.org
Clone URL: git://github.com/jf/chronic.git
mojombo (author)
Mon Feb 18 00:30:50 -0800 2008
commit  b9eb114e77d86eeac43e5b0b713d40b8d5a23f62
tree    58be6878a4b002fca2572a7454d772fec8ebc219
parent  2dd91432a5c39809c7d3bb3f8e928d86080b947e
chronic / History.txt
100644 61 lines (38 sloc) 1.677 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
= 0.2.4
 
* fixed numerizer number combination bug (27 Oct 2006 7:30pm works now) (reported by reynard h)
* allow numeric timezone offset (e.g -0500)
* disregard commas (so as to not return nil)
* fix parse of (am|pm|oclock) separation to handle "Ham sandwich" properly
* handle 'on' e.g. 5pm on Monday (by indirect)
 
= 0.2.3
 
* fixed 12am/12pm (by Nicholas Schlueter)
 
= 0.2.2
 
* added missing files (damn you manifest)
 
= 0.2.1
 
* fixed time overflow issue
* implemented "next" for minute repeater
* generalized time dealiasing to dealias regardless of day portion and time position
* added additional token match for cases like "friday evening at 7" and "tomorrow evening at 7"
* added support for Time#to_s output format: "Mon Apr 02 17:00:00 PDT 2007"
 
= 0.2.0 2007-03-20
 
* implemented numerizer, allowing the use of number words (e.g. five weeks ago) (by shalev)
 
= 0.1.6 2006-01-15
 
* added 'weekend' support (by eventualbuddha)
 
= 0.1.5 2006-12-20
 
* fixed 'aug 20' returning next year if current month is august
* modified behavior of 'from now'
* added support for seconds on times, and thus db timestamp format: "2006-12-20 18:04:23"
* made Hoe compliant
 
= 0.1.4
 
* removed verbose error checking code. oops. :-/
 
= 0.1.3
 
* improved regexes for word variations (by Josh Goebel)
* fixed a bug that caused "today at 3am" to return nil if current time is after 3am
 
= 0.1.2
 
* removed Date dependency (now works on windows properly without fiddling)
 
= 0.1.1
 
* run to_s on incoming object
* fixed loop loading of repeaters files (out of order on some machines)
* fixed find_within to use this instead of next (was breaking "today at 6pm")
 
= 0.1.0
 
* initial release