API to store and share a calendar, to facilitate users organise events.
All routes return Json
- GET
/
: Root route shows if Web API is running - GET
api/v1/events/
: returns all configuration IDs - GET
api/v1/events/[ID]
: returns details about a single event with given ID - POST
api/v1/events/
: creates a new event
Install this API by cloning the relevant branch and installing required gems from Gemfile.lock
:
bundle install
Run the test script:
ruby spec/api_spec.rb
Run this API using:
rackup