eclectic 0.8.0

Experimental collection traits.
Documentation
#!/bin/bash

set -o errexit -o nounset

cd target/doc

git init
git config user.email 'apaseltiner@gmail.com'
git config user.name 'Andrew Paseltiner'
git remote add upstream "https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git"
git fetch upstream gh-pages
git reset upstream/gh-pages

touch .

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