- Mac OSX Ver 10.8.2
- Vim version 7.6.633
- macvim-kaoriya
- Terminal.app + tmux
- .gitignore
| *hatena_format.jax* はてな記法 | |
| ============================================================================== | |
| 入力支援記法 *hatena_format_input_support* | |
| ------------------------------------------------------------------------------ | |
| 見出し記法 *hatena_format_heading* | |
| > |
| #import <Cocoa/Cocoa.h> | |
| @class ChameleonAppDelegate; | |
| @interface AppDelegate : NSObject <NSApplicationDelegate> | |
| @property (retain) IBOutlet UIKitView* chameleonView; | |
| @property (retain) ChameleonAppDelegate* chameleonApp; | |
| @end |
| configuration=`echo ${CONFIGURATION} | tr a-z A-Z` | |
| if expr ${configuration} : "^ADHOC" > /dev/null; then | |
| # AdHoc | |
| buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" "${PROJECT_DIR}/${PROJECT_NAME}/App-Info.plist") | |
| date=`git log -1 --format='%ci'` | |
| buildNumber="${buildNumber} (${date})" | |
| /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "${PROJECT_DIR}/${PROJECT_NAME}/App-Info.plist" |
| last_commit_date.txt |
| xcodebuild -target Tests -configuration Debug -sdk iphonesimulator TEST_AFTER_BUILD=YES TEST_HOST= |
| xctool test GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | |
| lcov -c -d ~/Library/Developer/Xcode/DerivedData/sample-app-xxxxxxx/Build/Intermediates/pantry-ios-client.build/Debug-iphonesimulator/Tests.build -o ~/Desktop/report.info | |
| /usr/local/Cellar/lcov/1.10/bin/genhtml -o ~/Desktop/report report.info |
| # hidden/temp files | |
| .DS_Store | |
| *.swp | |
| *~.nib | |
| *.bk | |
| temp.plist | |
| # Build dir | |
| build/ | |
| PROJECT = XXX.xcodeproj | |
| TEST_TARGET = Tests | |
| clean: | |
| xcodebuild \ | |
| -project $(PROJECT) \ | |
| clean | |
| test: | |
| xcodebuild \ |
| 1. In the Xcode Organizer, instead of Submit to the iOS App Store, do Save for Enterprise or Ad-Hoc Deployment. That will create a local copy of the .ipa file that would be submitted to the App Store. | |
| 2. When asked to choose an identity to sign with, select the same distribution identity you use when submitting to the App Store. | |
| 3. When asked to save the package, uncheck Save for Enterprise Distribution, then save the .ipa file. | |
| 4. Find the .ipa file and change its extension to .zip. | |
| 5. Expand the .zip file. That will produce a Payload folder containing your app bundle. | |