RxSwift/scripts/update-jazzy-docs.sh
2017-11-01 14:50:37 +01:00

23 lines
609 B
Bash
Executable File

. scripts/common.sh
function updateDocs() {
WORKSPACE=$1
SCHEME=$2
CONFIGURATION=$3
SIMULATOR=$4
MODULE=$5
ensure_simulator_available "${SIMULATOR}"
SIMULATOR_GUID=`simulator_ids "${SIMULATOR}"`
DESTINATION='id='$SIMULATOR_GUID''
set -x
killall Simulator || true
jazzy --config .jazzy.yml -m "${MODULE}" -x -workspace,"${WORKSPACE}",-scheme,"${SCHEME}",-configuration,"${CONFIGURATION}",-derivedDataPath,"${BUILD_DIRECTORY}",-destination,"$DESTINATION"
set +x
}
./scripts/update-jazzy-config.rb
updateDocs Rx.xcworkspace "RxExample-iOS" "Release" $DEFAULT_IOS_SIMULATOR "RxSwift"