rumqtt 0.10.1

A fast, lockfree mqtt client
Documentation
#!/bin/bash

set -o errexit -o nounset

if [ "$TRAVIS_BRANCH" != "master" ]
then
  echo "This commit was made against the $TRAVIS_BRANCH and not the master! No deploy!"
  exit 0
fi

rev=$(git rev-parse --short HEAD)

cd target/doc

git init
git config user.name "kteza1"
git config user.email "k.teza1@gmail.com"

git remote add upstream "https://$GH_TOKEN@github.com/Ather-Energy/RuMqtt.git"
git fetch upstream
git reset upstream/gh-pages

touch .

git add -A .
git commit -m "rebuild pages at ${rev}"
git push -q upstream HEAD:gh-pages