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
/* | |
File: KeychainItemWrapper.h | |
Abstract: | |
Objective-C wrapper for accessing a single keychain item. | |
Version: 1.2 - ARCified | |
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple | |
Inc. ("Apple") in consideration of your agreement to the following | |
terms, and your use, installation, modification or redistribution of |
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 | |
CMD="ls -l" # Command that runs your tests | |
protected_branch='master' | |
# Check if we actually have commits to push | |
commits=`git log @{u}..` | |
if [ -z "$commits" ]; then | |
exit 0 | |
fi |
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 = 'TSAlertView' | |
s.version = '1.0' | |
s.platform = :ios | |
s.summary = 'UIAlertView drop-in replacement. Supports stacked buttons, input fields, user-configurable size, and more.' | |
s.homepage = 'https://github.com/TomSwift/TSAlertView' | |
s.author = { 'TomSwift' => 'https://github.com/TomSwift' } | |
s.source = { :git => 'https://github.com/TomSwift/TSAlertView.git', :commit => '37c4c4d3bba757d82201f7609577b32020561ef9' } | |
s.source_files = 'TSAlertView/TSAlertView.h', 'TSAlertView/TSAlertView.m' | |
s.resources = 'TSAlertView/TSAlertView*.png' |
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 = 'SDURLCache' | |
s.version = '1.3' | |
s.platform = :ios | |
s.summary = 'URLCache subclass with on-disk cache support on iPhone/iPad.' | |
s.homepage = 'https://github.com/rs/SDURLCache' | |
s.author = { 'Olivier Poitrey' => 'rs@dailymotion.com' } | |
s.source = { :git => 'https://github.com/rs/SDURLCache.git', :commit => '2b6a9b081683c1de3806cc76379eeb8994d60744' } | |
s.source_files = 'SDURLCache.h', 'SDURLCache.m', 'SDCachedURLResponse.h', 'SDCachedURLResponse.m' | |
end |