2013-11-14 17:04:38 -07:00
|
|
|
#xc function courtesy of http://gist.github.com/subdigital/5420709
|
|
|
|
function xc {
|
2015-08-07 09:56:57 -07:00
|
|
|
local xcode_proj
|
|
|
|
xcode_proj=(*.{xcworkspace,xcodeproj}(N))
|
|
|
|
if [[ ${#xcode_proj} -eq 0 ]]; then
|
2013-11-14 17:04:38 -07:00
|
|
|
echo "No xcworkspace/xcodeproj file found in the current directory."
|
|
|
|
else
|
2015-08-07 09:56:57 -07:00
|
|
|
echo "Found ${xcode_proj[1]}"
|
|
|
|
open "${xcode_proj[1]}"
|
2013-11-14 17:04:38 -07:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function xcsel {
|
|
|
|
sudo xcode-select --switch "$*"
|
|
|
|
}
|
|
|
|
|
|
|
|
alias xcb='xcodebuild'
|
|
|
|
alias xcp='xcode-select --print-path'
|
2014-12-01 04:34:18 -07:00
|
|
|
alias xcdd='rm -rf ~/Library/Developer/Xcode/DerivedData/*'
|
2014-10-27 20:17:11 -07:00
|
|
|
|
|
|
|
if [[ -d $(xcode-select -p)/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app ]]; then
|
|
|
|
alias simulator='open $(xcode-select -p)/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app'
|
|
|
|
else
|
|
|
|
alias simulator='open $(xcode-select -p)/Applications/iOS\ Simulator.app'
|
|
|
|
fi
|