-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,10 @@ | ||
IGNORE THIS BRANCH | ||
==== | ||
================== | ||
|
||
This is the [GitHub Pages](https://pages.github.com) branch for the project, | ||
used to host the assets (API doc, etc.) that are linked in the master branch | ||
README.md | ||
|
||
### [jazzy](https://github.com/realm/jazzy) | ||
|
||
jazzy is used to generate the API document for SMCKit. | ||
|
||
- Version in use: **0.0.16** | ||
|
||
```bash | ||
# Command used to generate doc | ||
jazzy -a beltex | ||
-u https://github.com/beltex/ | ||
-m SMCKit | ||
-g http://github.com/beltex/SMCKit | ||
-x -project,SMCKit.xcodeproj | ||
``` | ||
jazzy is used to generate the API document for SMCKit. See `jazzy.sh`. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
# WHAT: Script to generate API document using jazzy (v0.0.17) | ||
|
||
AUTHOR=beltex | ||
AUTHOR_URL=https://github.com/beltex/ | ||
MODULE_NAME=SMCKit | ||
GITHUB_URL=http://github.com/beltex/SMCKit | ||
|
||
jazzy -a $AUTHOR -u $AUTHOR_URL -m $MODULE_NAME -g $GITHUB_URL |
a0a987e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May have a replacement for the
jazzy.sh
script based off of this - realm/jazzy#58