Created
May 24, 2016 09:48
-
-
Save onlyyoujack/f963e96373174655a7507c199d6c250d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#更多操作 参考 appledoc --help | |
echo "更新文档" | |
SOURCE_DIR=./source | |
OUTPUT_DIR=./doc | |
/usr/local/bin/appledoc \ | |
--project-name "project-name" \ | |
--project-company "project-company" \ | |
--company-id "id" \ | |
--output "$OUTPUT_DIR" \ | |
--keep-undocumented-objects \ | |
--keep-undocumented-members \ | |
--create-html \ | |
--install-docset \ | |
--no-create-docset \ | |
--keep-intermediate-files \ | |
--no-repeat-first-par \ | |
--exit-threshold 9999 \ | |
--clean-output \ | |
--ignore .m \ | |
--logformat xcode \ | |
"$SOURCE_DIR" | |
echo "文档生成在 $OUTPUT_DIR" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment