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
{ | |
"name": "ReactiveCocoa", | |
"version": "2.5", | |
"summary": "A framework for composing and transforming streams of values.", | |
"homepage": "https://github.com/blog/1107-reactivecocoa-is-now-open-source", | |
"authors": { | |
"Josh Abernathy": "[email protected]" | |
}, | |
"source": { | |
"git": "https://github.com/ReactiveCocoa/ReactiveCocoa.git", |
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
xcrun simctl list | awk -F "[()]" '{ for (i=2; i<NF; i+=2) print $i }' | grep '^[-A-Z0-9]*$' | xargs -I uuid xcrun simctl erase uuid |
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
version=`/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" "${INFOPLIST_FILE}"` | |
build=`/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "${INFOPLIST_FILE}"` | |
export PATH=$PATH:/usr/local/bin | |
function addOverlayInfo() { | |
income_icon_name=$1 | |
outcome_icon_name=$2 | |
echo "addOverlayInfo with income ${income_icon_name} and outcoming ${outcome_icon_name}" | |