From 60a9c47b57e63651eea66e04903aeaed2b4adcd9 Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Fri, 17 Nov 2017 11:46:29 -0800 Subject: [PATCH] Use docs.rs --- Readme.md | 2 +- update_doc.sh | 11 ----------- 2 files changed, 1 insertion(+), 12 deletions(-) delete mode 100755 update_doc.sh diff --git a/Readme.md b/Readme.md index 3b9a3e1..17556a9 100644 --- a/Readme.md +++ b/Readme.md @@ -9,7 +9,7 @@ Cursive is a TUI (Text User Interface) library for rust. It is currently based o It allows you to build rich user interfaces for terminal applications. -# [Documentation](http://gyscos.github.io/Cursive/cursive/index.html) +# [Documentation](http://docs.rs/cursive) It is designed to be safe and easy to use: diff --git a/update_doc.sh b/update_doc.sh deleted file mode 100755 index ec014c0..0000000 --- a/update_doc.sh +++ /dev/null @@ -1,11 +0,0 @@ -set -e - -cargo doc --no-deps -FROM=$(git rev-parse --short HEAD) -git checkout gh-pages -git fetch && git rebase origin/gh-pages -rsync -a target/doc/ . -git add . -git commit -m "Update doc for ${FROM}" -# git push -git checkout master