Skip to content

Instantly share code, notes, and snippets.

@SergioEstevao
Last active December 18, 2015 21:09
Show Gist options
  • Save SergioEstevao/5845471 to your computer and use it in GitHub Desktop.
Save SergioEstevao/5845471 to your computer and use it in GitHub Desktop.
AppleDoc documentation generation script
appledoc \
--project-name ${PROJECT} \
--project-company "Sergio Estevao" \
--company-id com.sergioestevao \
--docset-atom-filename "${PROJECT}.atom" \
--docset-feed-url "http://localhost/help/${PROJECT}/%DOCSETATOMFILENAME" \
--docset-package-url "http://localhost/help/${PROJECT}/%DOCSETPACKAGEFILENAME" \
--docset-fallback-url "http://localhost/help/${PROJECT}/" \
--publish-docset \
--logformat xcode \
--keep-undocumented-objects \
--keep-undocumented-members \
--keep-intermediate-files \
--no-repeat-first-par \
--no-warn-invalid-crossref \
--ignore "*.m" \
--index-desc "${PROJECT_DIR}/README.md" \
--exit-threshold 2 \
--output /Library/WebServer/Documents/help/${PROJECT} \
"${PROJECT_DIR}/Core"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment