51 lines
1.3 KiB
Bash
Executable File
51 lines
1.3 KiB
Bash
Executable File
# This is kind of naughty, I know,
|
|
# but we need to know what will the state be once RxSwift is deployed.
|
|
|
|
set -e
|
|
|
|
BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
ESCAPED_SOURCE=$(pwd | sed -E "s/\//\\\\\//g")
|
|
|
|
function cleanup {
|
|
pushd ~/.cocoapods/repos/master
|
|
git clean -d -f
|
|
git reset master --hard
|
|
popd
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
VERSION=`cat RxSwift.podspec | grep -E "s.version\s+=" | cut -d '"' -f 2`
|
|
TARGETS=(RxTests RxCocoa RxBlocking RxSwift)
|
|
|
|
pushd ~/.cocoapods/repos/master/Specs
|
|
for TARGET in ${TARGETS[@]}
|
|
do
|
|
mkdir -p ${TARGET}/${VERSION}
|
|
done
|
|
popd
|
|
|
|
for TARGET in ${TARGETS[@]}
|
|
do
|
|
|
|
mkdir -p ~/.cocoapods/repos/master/Specs/${TARGET}/${VERSION}
|
|
rm ~/.cocoapods/repos/master/Specs/${TARGET}/${VERSION}/* || echo
|
|
|
|
cat $TARGET.podspec |
|
|
sed -E "s/s.source[^\}]+\}/s.source = { :git => '${ESCAPED_SOURCE}', :branch => \'${BRANCH}\' }/" > ~/.cocoapods/repos/master/Specs/${TARGET}/${VERSION}/${TARGET}.podspec
|
|
done
|
|
|
|
function validate() {
|
|
local PODSPEC=$1
|
|
|
|
cd ~/.cocoapods/repos/master/; ~/Projects/CocoaPods/bin/pod lib lint ~/Projects/RxSwift/RxSwift.podspec --verbose --no-clean
|
|
#pod lib lint $PODSPEC --verbose --no-clean --allow-warnings # temporary allow warning because of deprecated API in rc
|
|
}
|
|
|
|
for TARGET in ${TARGETS[@]}
|
|
do
|
|
|
|
validate ${TARGET}.podspec
|
|
|
|
done
|