Skip to content

Instantly share code, notes, and snippets.

View dmrschmidt's full-sized avatar

Dennis Schmidt dmrschmidt

View GitHub Profile
@dmrschmidt
dmrschmidt / gpr.sh
Created March 19, 2015 10:33
dependency checking `git pull --rebase` alias
#!/bin/sh
git pull --rebase || exit 1;
root_path="$(git rev-parse --show-toplevel)"
bundle check > /dev/null; needs_bundle=$?
diff "${root_path}/Podfile.lock" "${root_path}/Pods/Manifest.lock" > /dev/null; needs_pod=$?
if [[ $needs_bundle != 0 ]] ; then
echo "\033[01;31m# Your bundler dependencies are outdated."
#!/bin/sh
# Some things taken from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'
green='\033[0;32m'
@dmrschmidt
dmrschmidt / google-plus-sdk.podspec.json
Last active August 29, 2015 14:06
google-plus-sdk.podspec.json
{
"name": "google-plus-ios-sdk",
"version": "1.7.1",
"summary": "Google+ Platform for iOS.",
"description": " Create a more engaging experience and connect with more users by integrating social into your app. Extend your app in new and creative ways using these Google+ platform features.\n",
"homepage": "https://developers.google.com/+/mobile/ios/",
"license": {
"type": "Copyright",
"text": "Copyright 2013 Google Inc."
},