Skip to content

Instantly share code, notes, and snippets.

@hcrub
Created November 6, 2013 20:02
Show Gist options
  • Save hcrub/7343146 to your computer and use it in GitHub Desktop.
Save hcrub/7343146 to your computer and use it in GitHub Desktop.
Aggregate Target for Xcode 5+ for creating clean AppleDoc documentation.
/usr/local/bin/appledoc \
--project-name "${PROJECT_NAME}" \
--project-company "HCRUB" \
--company-id "com.hcrub" \
--output "${PROJECT_DIR}/Documentation" \
--install-docset \
--logformat xcode \
--keep-undocumented-objects \
--keep-undocumented-members \
--keep-intermediate-files \
--no-repeat-first-par \
--no-warn-invalid-crossref \
--merge-categories \
--exit-threshold 2 \
--docset-platform-family iphoneos \
--ignore "*.m" \
--include "${PROJECT_DIR}/${PRJECT_NAME}" \
--ignore "LoadableCategory.h" \
--index-desc "${PROJECT_DIR}/readme.markdown" \
"${PROJECT_DIR}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment