Skip to content

Instantly share code, notes, and snippets.

View JeaSungLEE's full-sized avatar
🎯
Focusing

JERCY JeaSungLEE

🎯
Focusing
View GitHub Profile
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = grantdavis
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = YES
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
🌞 Morning 39 commits ▊░░░░░░░░░░░░░░░░░░░░ 4.1%
🌆 Daytime 382 commits ████████▌░░░░░░░░░░░░ 40.6%
🌃 Evening 292 commits ██████▌░░░░░░░░░░░░░░ 31.1%
🌙 Night 227 commits █████░░░░░░░░░░░░░░░░ 24.1%
@JeaSungLEE
JeaSungLEE / pod_init.sh
Created July 23, 2019 04:11 — forked from iamchiwon/pod_init.sh
Xcode behavior 용: pod init 하기
#!/bin/bash
# move project dir
PROJECT_HOME=`pwd`
echo "cd $PROJECT_HOME" > /tmp/tmp.sh
# search .xcodeproj file and strip filename
PROJECT_NAME=""
for f in *.xcodeproj; do
PROJECT_NAME="${f%.*}"