ErrandsOnTheWay is a trip planning app that allows you to route a trip, and add stops along the way, based on your errands. We utilize Geocoder, Google Maps API and Google Places API to analyze your trip and give you stopover options to choose from - optimized to get your tasks done in the least amount of time. Spend less time planning, and more time doing with ErrandsOnTheWay.
Note: This assumes you have Ruby 1.9.3 or later installed properly and have PostgreSQL running.
First clone this repo
git clone https://github.com/LightningLord/errandsontheway.gitInstall all the dependencies:
bundle installCreate the database:
rake db:create
rake db:migrateStart the server:
rails sTo run the test suite:
rake db:test:prepare
rake spec
