Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
- name: Add PostgreSQL repository | |
apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main' state=present | |
sudo: yes | |
- name: Add PostgreSQL repository key | |
apt_key: url=https://www.postgresql.org/media/keys/ACCC4CF8.asc state=present | |
sudo: yes | |
- name: Update apt cache | |
apt: update_cache=yes |
def build_path | |
"build/iPhoneOS-6.0-Release/" | |
end | |
def ipa_name | |
'"Today\'s Shirts.ipa"' | |
end | |
def dsym_name | |
'"Today\'s Shirts.dSYM"' |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Generate the list yourself:
$ cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS*.sdk/System/Library/Frameworks/UIKit.framework/Headers
$ grep UI_APPEARANCE_SELECTOR ./* | \
sed 's/NS_AVAILABLE_IOS(.*)//g' | \
sed 's/NS_DEPRECATED_IOS(.*)//g' | \
sed 's/API_AVAILABLE(.*)//g' | \
sed 's/API_UNAVAILABLE(.*)//g' | \
sed 's/UI_APPEARANCE_SELECTOR//g' | \