This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Keybase proof | |
| I hereby claim: | |
| * I am kevinoneill on github. | |
| * I am kevinoneill (https://keybase.io/kevinoneill) on keybase. | |
| * I have a public key ASD1DUmiDCQPyQ-XNwvhmiDj3BYVT1k6iaucXRkYKktBtQo | |
| To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Thu Mar 2 04:13:17 UTC 2017 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| VERSION=`/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" "${PROJECT_DIR}/${INFOPLIST_FILE}"` | |
| REVISION=`git rev-list HEAD|wc -l|awk '{print $1}'` | |
| COMMIT=`git rev-parse --short HEAD` | |
| echo -n ${TARGET_BUILD_DIR}/${INFOPLIST_PATH} | xargs -0 /usr/libexec/PlistBuddy -c "Set :about-version-text ${VERSION}.${REVISION} (${COMMIT})" | |
| echo -n ${TARGET_BUILD_DIR}/${INFOPLIST_PATH} | xargs -0 /usr/libexec/PlistBuddy -c "Set :CFBundleVersion ${VERSION}.${REVISION}" | |
| echo -n ${TARGET_BUILD_DIR}/${INFOPLIST_PATH} | xargs -0 /usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString ${VERSION}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = "InMobiSDK" | |
| s.version = "4.3.0" | |
| s.summary = "InMobi iOS SDK." | |
| s.homepage = "https://www.inmobi.com" | |
| s.license = { | |
| :type => 'proprietary', | |
| :text => <<-LICENSE | |
| Copyright (C) InMobi. All Right Reserved. | |
| LICENSE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # (Above line comes out when placing in Xcode scheme) | |
| # | |
| # Inspired by original script by incanus: | |
| # https://gist.github.com/1186990 | |
| # | |
| # Rewritten by martijnthe: | |
| # https://gist.github.com/1379127 | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIImage+Size.h | |
| // Quickie | |
| // | |
| // Created by Kevin O'Neill on 13/03/11. | |
| // Copyright 2011 Kevin O'Neill. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| mkdir -p ~/Library/Application\ Support/TextMate/Bundles | |
| cd ~/Library/Application\ Support/TextMate/Bundles | |
| git clone git://github.com/protocool/ack-tmbundle.git Ack.tmbundle | |
| git clone git://github.com/textmate/ruby-haml.tmbundle.git | |
| git clone git://github.com/seaofclouds/sass-textmate-bundle.git "Ruby Saas.tmbundle" | |
| git clone git://github.com/drnic/github-tmbundle.git "GitHub.tmbundle" |