The Timestamp Microservice is a small project for Ruby on Rails, meant to exercise proper development workflow (version control, integration and unit testing, etc).
The microservice features a single controller action that renders a JSON object in response to GET requests to the homepage. If the request is accompanied by a natural language date (in the correct format), or a unix timestamp, the JSON object will contain a natural languge date and a unix timestamp for that date. For any other paramter values, the response object will contain nulls.
https://localhost:3000/December%2015,%202015
https://localhost:3000/1450137600
{ "unix": 1450137600, "natural": "December 15, 2015" }