Install MongoDB for OSX
brew install mongoClone the repo
git clone https://github.com/dbousamra/android-bootcamp-rest-serverChange directory into the project repo
cd android-bootcamp-rest-serverInstall gems
bundle installChange directory into the project repo
cd android-bootcamp-rest-serverStart the database server
mongodStart the Sinatra server
ruby app.rbBrowse to http://localhost:4567/
Seed db data
rake db:seedDrop db data
rake db:dropRun the specs
rake spec