forked from progrium/timeapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
32 lines (18 loc) · 834 Bytes
/
README
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
timeapi
========
An online date/time parsing service, based on the 'chronic' ruby gem.
Overview
---------
Chronic [ http://chronic.rubyforge.org/ ] is a natural language date/time parser
written in pure Ruby. TimeAPI just adds an RESTful service around chronic.
Usage
------
From a browser visit http://chronic.heroku.com/ and fill the textbox with a
string containing a natural language date. Examples: 'tomorrow', 'in two hours' etc.
API (just one method) is available on URL http://chronic.heroku.com/pdt/{your_string}
For example:
http://chronic.heroku.com/pdt/in+two+hours
You can also add a format string based on Ruby Time strftime, replacing % with \
For example:
http://chronic.heroku.com/pdt/in+two+hours?\a \b \d \I:\M:\S \Z \Y
See http://corelib.rubyonrails.org/classes/Time.html#M000264 for more info.