Last active
August 29, 2015 14:11
-
-
Save torinkwok/b27c2f2139eae00ff81d to your computer and use it in GitHub Desktop.
Xcode Integration Script for appledoc
This file contains hidden or 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 Xcode Integration Script | |
| /usr/local/bin/appledoc \ | |
| --project-name "${PROJECT_NAME}" \ | |
| --project-company " Tong Guo" \ | |
| --company-id "individual.TongGuo" \ | |
| --docset-atom-filename "${company}.atom" \ | |
| --docset-feed-url "${companyURL}/${company}/%DOCSETATOMFILENAME" \ | |
| --docset-package-url "${companyURL}/${company}/%DOCSETPACKAGEFILENAME" \ | |
| --docset-fallback-url "${companyURL}/${company}" \ | |
| --output "${HOME}/${PROJECT_NAME}-Doc" \ | |
| --publish-docset \ | |
| --docset-platform-family "${target}" \ | |
| --logformat xcode \ | |
| --keep-intermediate-files \ | |
| --no-repeat-first-par \ | |
| --no-warn-invalid-crossref \ | |
| --no-keep-undocumented-members \ | |
| --no-search-undocumented-doc \ | |
| --exit-threshold 2 \ | |
| "${PROJECT_DIR}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment