I hereby claim:
- I am forbze on github.
- I am forbze (https://keybase.io/forbze) on keybase.
- I have a public key ASCMWogw9hM2YuvWuFM95wlEHCvD5kkVEnMAh9TCd99JTQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
alias ls='ls -Glah' | |
alias web='open -a Safari.app' | |
alias mail='open -a Mail.app' | |
alias todo='open -a Reminders.app' | |
git_branch () { | |
if git rev-parse --git-dir >/dev/null 2>&1 | |
then echo -e "" [$(git branch 2>/dev/null| sed -n '/^\*/s/^\* //p')] | |
else | |
echo "" | |
fi |
module.exports = { | |
networks: { | |
development: { | |
host: 'localhost', | |
port: 8545, | |
network_id: '*', // Match any network id | |
from: "0x82c9405b0d7b7cf8ee77ae656ab42d1b294b4123" | |
} | |
} | |
} |
git=$(sh /etc/profile; which git) | |
number_of_commits=$("$git" rev-list HEAD --count) | |
bundle_version=$number_of_commits | |
target_plist="$TARGET_BUILD_DIR/$INFOPLIST_PATH" | |
dsym_plist="$DWARF_DSYM_FOLDER_PATH/$DWARF_DSYM_FILE_NAME/Contents/Info.plist" | |
for plist in "$target_plist" "$dsym_plist"; do | |
if [ -f "$plist" ]; then |
#!/bin/sh | |
curl -X POST -H "Content-Type: application/json" -d "{\"value1\":\"$XCS_BOT_NAME\",\"value2\":\"$XCS_INTEGRATION_RESULT\"}" https://maker.ifttt.com/trigger/Build_Complete/with/key/$IFTTT_MAKER_KEY |
#!/bin/sh | |
mkdir -p /tmp/$XCS_BOT_NAME/$XCS_INTEGRATION_NUMBER/ | |
cd /tmp/$XCS_BOT_NAME/$XCS_INTEGRATION_NUMBER/ | |
wget -O upload$XCS_INTEGRATION_NUMBER.ipa $XCS_PRODUCT | |
curl \ | |
-F "status=2" \ |
<?xml version="1.0" encoding="UTF-8"?> | |
<Bucket | |
type = "2" | |
version = "2.0"> | |
<Breakpoints> | |
<BreakpointProxy | |
BreakpointExtensionID = "Xcode.Breakpoint.ExceptionBreakpoint"> | |
<BreakpointContent | |
shouldBeEnabled = "Yes" | |
ignoreCount = "0" |
git=$(sh /etc/profile; which git) | |
git_release_version=$("$git" describe --tags --always --abbrev=0) | |
number_of_commits=$("$git" rev-list master | wc -l | tr -d ' ') | |
target_plist="$TARGET_BUILD_DIR/$INFOPLIST_PATH" | |
dsym_plist="$DWARF_DSYM_FOLDER_PATH/$DWARF_DSYM_FILE_NAME/Contents/Info.plist" | |
watch_plist="$TARGET_BUILD_DIR/Acara WatchKit App.app/Info.plist" | |
watch_appex_plist="$TARGET_BUILD_DIR/Acara WatchKit Extension.appex/Info.plist" | |
for plist in "$target_plist" "$dsym_plist" "$watch_appex_plist" "$watch_plist"; do |