scheduled-executor 0.2.1

Single and multi-threaded task scheduler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

set -e

echo "Removing old docs"
rm -rf target/doc

echo "Compile docs"
cargo doc -p scheduled-executor --no-deps
echo '<meta http-equiv=refresh content=0;url=scheduled_executor/index.html>' > target/doc/index.html

echo "Run ghp-import"
ghp-import -n target/doc

echo "Push to github"
git push origin gh-pages

# Squash changes: git rebase --root -i