From 54e862b21e76fa90b398e6af2af9bf140ecee7aa Mon Sep 17 00:00:00 2001 From: Andrej Mihajlov Date: Sun, 15 Apr 2018 17:34:31 +0200 Subject: [PATCH] Update documentation script --- .jazzy.yml | 16 ++++++++++++++++ publish-docs.sh | 14 +------------- 2 files changed, 17 insertions(+), 13 deletions(-) create mode 100644 .jazzy.yml diff --git a/.jazzy.yml b/.jazzy.yml new file mode 100644 index 0000000..bd26c1a --- /dev/null +++ b/.jazzy.yml @@ -0,0 +1,16 @@ +author: Andrej Mihajlov +copyright: Copyright (c) 2013-present Andrej Mihajlov +author_url: http://codeispoetry.ru/ +github_url: https://github.com/pronebird/UIScrollView-InfiniteScroll +github_file_prefix: https://github.com/pronebird/UIScrollView-InfiniteScroll/tree/9cddbf4d89 + +module: UIScrollView_InfiniteScroll +module_version: 1.1.0 + +clean: true +theme: fullwidth +objc: true +sdk: iphonesimulator + +framework_root: Classes +umbrella_header: Classes/UIScrollView+InfiniteScroll.h diff --git a/publish-docs.sh b/publish-docs.sh index 9232c78..a0916ab 100755 --- a/publish-docs.sh +++ b/publish-docs.sh @@ -1,18 +1,6 @@ #!/bin/sh -jazzy \ - --clean \ - --objc \ - --sdk iphoneos \ - --theme fullwidth \ - --author 'Andrei Mihailov' \ - --author_url http://codeispoetry.ru/ \ - --github_url https://github.com/pronebird/UIScrollView-InfiniteScroll \ - --github-file-prefix https://github.com/pronebird/UIScrollView-InfiniteScroll/tree/1.0.0 \ - --module-version 1.0.0 \ - --umbrella-header Classes/UIScrollView+InfiniteScroll.h \ - --framework-root Classes \ - --module UIScrollView_InfiniteScroll +jazzy --config .jazzy.yml git add docs && git commit -m "Update docs subtree commit" git push origin `git subtree split --prefix docs master`:gh-pages --force