-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate-docs.sh
executable file
·27 lines (25 loc) · 1023 Bytes
/
create-docs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Create the documentation for Forms
jazzy \
--author "Josh Campion @ The Distance" \
--author_url "https://thedistance.co.uk" \
--github_url "https://github.com/thedistance/TheDistanceForms" \
--xcodebuild-arguments -scheme,"TheDistanceForms" \
--module "TheDistanceForms" \
--readme "ReadMe.md" \
--output "docs/TheDistanceForms"
# Create the documentation for Photos & Videos Forms
jazzy \
--author "Josh Campion @ The Distance" \
--author_url "https://thedistance.co.uk" \
--github_url "https://github.com/thedistance/TheDistanceForms" \
--xcodebuild-arguments -scheme,"TheDistanceFormsPhotosVideos" \
--module "TheDistanceFormsPhotosVideos" \
--output "docs/TheDistanceFormsPhotosVideos"
# Create the documentation for Themed
jazzy \
--author "Josh Campion @ The Distance" \
--author_url "https://thedistance.co.uk" \
--github_url "https://github.com/thedistance/TheDistanceForms" \
--xcodebuild-arguments -scheme,"TheDistanceFormsThemed" \
--module "TheDistanceFormsThemed" \
--output "docs/TheDistanceFormsThemed"