diff options
author | Joe George <joe@zeroc.com> | 2019-06-04 12:27:38 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2019-06-11 15:30:33 -0400 |
commit | 76a7de722606b03bae4d0c5198dd4620ba31b1fd (patch) | |
tree | 16d3fc18aff02f793e221a2ee197929c2002b5fc | |
parent | Reworked Traits and fixed comments (diff) | |
download | ice-76a7de722606b03bae4d0c5198dd4620ba31b1fd.tar.bz2 ice-76a7de722606b03bae4d0c5198dd4620ba31b1fd.tar.xz ice-76a7de722606b03bae4d0c5198dd4620ba31b1fd.zip |
Add Jazzy config
-rw-r--r-- | swift/.gitignore | 1 | ||||
-rw-r--r-- | swift/.jazzy.yaml | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/swift/.gitignore b/swift/.gitignore new file mode 100644 index 00000000000..2f88269126d --- /dev/null +++ b/swift/.gitignore @@ -0,0 +1 @@ +/docs diff --git a/swift/.jazzy.yaml b/swift/.jazzy.yaml new file mode 100644 index 00000000000..3117a6b5387 --- /dev/null +++ b/swift/.jazzy.yaml @@ -0,0 +1,17 @@ +module: Ice +author: ZeroC +author_url: https://zeroc.com +github_url: https://github.com/zeroc-ice/ice +theme: fullwidth +copyright: Copyright (c) ZeroC, Inc. All rights reserved. +xcodebuild_arguments: ['-project', 'ice.xcodeproj', '-scheme', 'Ice macOS'] +skip_undocumented: true +hide_documentation_coverage: true +exclude: +- src/Ice/ClassResolver.swift + +# custom_categories: +# - name: Exceptions +# children: +# - Exception +# - LocalException |