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
| // | |
| // StickyHeaderLayout.h | |
| // Wombat | |
| // | |
| // Created by Todd Laney on 1/9/13. | |
| // Copyright (c) 2013 ToddLa. All rights reserved. | |
| // | |
| // Modified from http://blog.radi.ws/post/32905838158/sticky-headers-for-uicollectionview-using THANKS! | |
| // |
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
| { | |
| // Your GitHub API token | |
| // see: https://github.com/condemil/Gist#generating-access-token | |
| "token": "0d59f3ab5122a6a415dfddb235ea55b198e07b11", | |
| // Show GitHub organizations | |
| // Example: "company1", "company2" | |
| "include_orgs": [], | |
| // Show GitHub users |
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 = 'JSONKit' | |
| s.version = '1.5pre' | |
| s.license = 'BSD / Apache License, Version 2.0' | |
| s.summary = 'A Very High Performance Objective-C JSON Library.' | |
| s.homepage = 'https://github.com/heroims/JSONKit' | |
| s.author = 'John Engelhart' | |
| s.source = { :git => 'https://github.com/heroims/JSONKit', :commit => 'bcb1e9823cb8e8003ed5a97b23a93ceafb2240b3' } | |
| s.source_files = 'JSONKit.*' |
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
| set -ex | |
| [ "$ACTION" = build ] || exit 0 | |
| [ "$BUILD_VARIANTS" = "normal" ] || exit 0 | |
| [ "$CONFIGURATION" = "Release" ] || exit 0 | |
| dir="$TEMP_FILES_DIR/disk" | |
| dmg="$HOME/Desktop/$PROJECT_NAME.dmg" | |
| rm -rf "$dir" |
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
| // See http://www.opensource.apple.com/source/objc4/objc4-371.2/runtime/Accessors.subproj/objc-accessors.h | |
| extern void objc_setProperty(id self, SEL _cmd, ptrdiff_t offset, id newValue, BOOL atomic, BOOL shouldCopy); | |
| extern id objc_getProperty(id self, SEL _cmd, ptrdiff_t offset, BOOL atomic); | |
| extern void objc_copyStruct(void *dest, const void *src, ptrdiff_t size, BOOL atomic, BOOL hasStrong); | |
| #define PSPDFAtomicRetainedSetToFrom(dest, source) objc_setProperty(self, _cmd, (ptrdiff_t)(&dest) - (ptrdiff_t)(self), source, YES, NO) | |
| #define PSPDFAtomicCopiedSetToFrom(dest, source) objc_setProperty(self, _cmd, (ptrdiff_t)(&dest) - (ptrdiff_t)(self), source, YES, YES) | |
| #define PSPDFAtomicAutoreleasedGet(source) objc_getProperty(self, _cmd, (ptrdiff_t)(&source) - (ptrdiff_t)(self), YES) | |
| #define PSPDFAtomicStructToFrom(dest, source) objc_copyStruct(&dest, &source, sizeof(__typeof__(source)), YES, NO) |