Created
April 26, 2014 09:31
-
-
Save mac-cain13/11315725 to your computer and use it in GitHub Desktop.
XCode buildphase script that generated Appledoc of the project asynchronously
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
APPLEDOC_PATH=`which appledoc` | |
if [ $APPLEDOC_PATH ]; then | |
$APPLEDOC_PATH \ | |
--project-name ${PROJECT_NAME} \ | |
--project-company "YourCompany" \ | |
--company-id "com.yourcompany" \ | |
--ignore ".m" \ | |
--ignore "Pods" \ | |
--explicit-crossref \ | |
--keep-undocumented-objects \ | |
--keep-undocumented-members \ | |
--no-repeat-first-par \ | |
--no-warn-missing-arg \ | |
--no-warn-undocumented-object \ | |
--no-warn-undocumented-member \ | |
--no-warn-empty-description \ | |
--docset-bundle-id ${PROJECT_NAME} \ | |
--docset-bundle-name ${PROJECT_NAME} \ | |
--docset-install-path ${PROJECT_DIR} \ | |
--output ${TEMP_DIR} \ | |
${PROJECT_DIR} \ | |
> ${PROJECT_DIR}/docset-generation.log 2>&1 & | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment