Skip to content

Instantly share code, notes, and snippets.

@torinkwok
Last active August 29, 2015 14:11
Show Gist options
  • Select an option

  • Save torinkwok/b27c2f2139eae00ff81d to your computer and use it in GitHub Desktop.

Select an option

Save torinkwok/b27c2f2139eae00ff81d to your computer and use it in GitHub Desktop.
Xcode Integration Script for appledoc
# 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