This file contains 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
{ | |
"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." | |
}, |
This file contains 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/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' |
This file contains 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/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." |