MD5: 59bab8f71f8c096cd3f72cd73851515d
Rename it to: Sublime Text
Make it executable with: chmod u+x Sublime\ Text
| // | |
| // UIWebView+JSONObjectByEvaluatingJavascript.h | |
| // Feeder | |
| // | |
| // Created by Brent Royal-Gordon on 7/1/13. | |
| // Copyright (c) 2013 Architechies. All rights reserved. | |
| // | |
| @interface UIWebView (Additions) |
| // erkanyildiz | |
| // 20150813-1940 | |
| // | |
| // EYInfiniteEquilateralTriangleAnimationView.h | |
| #import <UIKit/UIKit.h> | |
| @interface EYInfiniteEquilateralTriangleAnimationView : UIView | |
| - (instancetype) initWithSide:(CGFloat)side andCenter:(CGPoint)center; | |
| - (void) start; |
| #import <UIKit/UIKit.h> | |
| @interface UICollectionView (ReloadItemsAnimated) | |
| - (void)reloadItemsAtIndexPaths:(NSArray *)indexPaths animated:(BOOL)animated; | |
| @end |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| // | |
| // ExampleCode.swift | |
| // | |
| import UIKit | |
| // MARK: - Protocol | |
| protocol SearchQueryProviderProtocol : class { // 'class' means only class types can implement it | |
| func searchQueryData() -> String |