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
extension Calendar { | |
func divide(interval dividend: DateInterval, by component: Calendar.Component, value divisor: Int) -> [DateInterval]? { | |
var intervals: [DateInterval] = [] | |
var previousDate = dividend.start | |
while | |
let nextDate = self.date(byAdding: component, value: divisor, to: previousDate), | |
dividend.contains(nextDate) | |
{ | |
let interval = DateInterval(start: previousDate, end: nextDate) |
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
// https://en.wikipedia.org/wiki/URL_normalization | |
import Foundation | |
extension URLComponents { | |
typealias NormalizationRule = (_ components: URLComponents) -> URLComponents | |
func normalize(with rule: NormalizationRule) -> URLComponents { | |
return rule(self) | |
} |
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
import Foundation | |
extension Dictionary where Value: RangeReplaceableCollection { | |
public mutating func append(element: Value.Iterator.Element, toValueOfKey key: Key) -> Value? { | |
var value: Value = self[key] ?? Value() | |
value.append(element) | |
self[key] = value | |
return value | |
} | |
} |
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
source 'https://rubygems.org' | |
gem 'nokogiri' |
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
#define ASTCastInline(valueIn, ObjectType) \ | |
([valueIn isKindOfClass:[Type class]] ? (Type *)valueIn : nil) | |
#define ASTCast(valueIn, ObjectType, valueOut) \ | |
ObjectType *valueOut = ([valueIn isKindOfClass:[ObjectType class]] ? (ObjectType *)valueIn : nil); |
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
extension UITraitEnvironment { | |
func stubTraitCollection(traitCollection: UITraitCollection) { | |
let partialMock = OCMockObject.partialMockForObject(self) | |
let traitCollection = UITraitCollection() | |
partialMock.stub().andReturn(traitCollection).traitCollection() | |
self.traitCollectionDidChange(nil) | |
} | |
func stubHorizontalSizeClass(horizontalSizeClass: UIUserInterfaceSizeClass) { |
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
@objc class ExampleTableCell: UITableViewCell, ReuseableObject, NibLoadable {} | |
@objc class ExampleViewController: UITableViewController { | |
required init?(coder aDecoder: NSCoder) { | |
fatalError("init(coder:) has not been implemented") | |
} | |
override init(style: UITableViewStyle) { |
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
typedef NS_ENUM(NSUInteger, ASTGem) { | |
ASTGemUnknown = 0, | |
ASTGemGarnet, | |
ASTGemAmethyst, | |
ASTGemPearl, | |
ASTGemRose, | |
}; | |
static NSString * const ASTGemNames[] = { |
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
import Foundation | |
struct LoggerMessage<T> { | |
let date: NSDate | |
let value: T | |
} | |
class Logger<T> { |
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
void ASTAssertNotCalledFromSubclassOfClass(Class doNotCallFromThisClass) { | |
NSString *bundleName = [[[NSBundle mainBundle] infoDictionary] objectForKey:(__bridge NSString *)kCFBundleNameKey]; | |
for (NSString *symbol in [NSThread callStackSymbols]) { | |
if ([symbol containsString:bundleName]) { | |
NSRange openBracketRange = [symbol rangeOfString:@"["]; | |
if (openBracketRange.location != NSNotFound) { | |
NSRange searchRange = NSMakeRange(openBracketRange.location, (symbol.length - openBracketRange.location)); | |
NSRange nextSpaceRange = [symbol rangeOfString:@" " options:0 range:searchRange]; | |
if (nextSpaceRange.location == NSNotFound) { | |
// well, this shouldn't happen… |