Find the plugin in ~Library/Application Support/Developer/Shared/Xcode/Plug-ins
Open the contents of the plugin
Open the Info.plist in Xcode
Expand the DVTPlugInCompatibilityUUIDs array
Create a new entry and paste in A16FF353-8441-459E-A50C-B071F53F51B7
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
| - (void)generateModel { | |
| NSManagedObjectModel *model = [NSManagedObjectModel new]; | |
| NSEntityDescription *runEntity = [NSEntityDescription new]; | |
| runEntity.name = @"Run"; | |
| runEntity.managedObjectClassName = @"Run"; | |
| model.entities = @[runEntity]; | |
| NSMutableArray *runProperties = [NSMutableArray new]; | |
| NSAttributeDescription *dateAttribute = [NSAttributeDescription new]; |
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
| Step 1: | |
| git clone https://github.com/hyperoslo/pod-template.git MyPod; cd MyPod; ./init.rb | |
| Step 2: | |
| pod name > MyPod |
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/sh | |
| PLIST_BUDDY=/usr/libexec/PlistBuddy | |
| function add_compatibility() { | |
| "$PLIST_BUDDY" -c "Add DVTPlugInCompatibilityUUIDs:10 string $2" \ | |
| "$1/Contents/Info.plist" | |
| } | |
| function has_compatibility() { |
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
| def should_crop(lines) | |
| (0..6).each do |n| | |
| return false unless lines[n].start_with? "//" | |
| end | |
| return false unless lines[7] = "" | |
| true | |
| end | |
| all_objc = Dir.glob("Classes/**/**/**/**.{m,h}") | |
| all_objc.each do |path| |
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
| - (HYPLoginViewController *)loginViewController | |
| { | |
| return _loginViewController = (_loginViewController) ?: [HYPLoginViewController new]; | |
| } |
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
| branch=$(git rev-parse --abbrev-ref HEAD) | |
| buildNumber=$(expr $(git rev-list $branch --count) - $(git rev-list HEAD..$branch --count)) | |
| /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "${PROJECT_DIR}/${INFOPLIST_FILE}" |
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
| // Taken from the commercial iOS PDF framework http://pspdfkit.com. | |
| // Copyright (c) 2013 Peter Steinberger. All rights reserved. | |
| // Licensed under MIT (http://opensource.org/licenses/MIT) | |
| // | |
| // You should only use this in debug builds. It doesn't use private API, but I wouldn't ship it. | |
| #import <objc/runtime.h> | |
| #import <objc/message.h> | |
| // Compile-time selector checks. |
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
| + (id)JSONObjectWithContentsOfFile:(NSString*)fileName | |
| { | |
| NSString *filePath = [[NSBundle mainBundle] pathForResource:[fileName stringByDeletingPathExtension] | |
| ofType:[fileName pathExtension]]; | |
| NSData *data = [NSData dataWithContentsOfFile:filePath]; | |
| NSError *error = nil; | |
| id result = [NSJSONSerialization JSONObjectWithData:data |
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 keymap | |
| # | |
| 'body': | |
| 'ctrl-tab': 'pane:show-next-item' | |
| 'alt-cmd-up': 'pane:split-up' | |
| 'alt-cmd-down': 'pane:split-down' | |
| 'shift-cmd-L': 'application:open-dev' | |
| 'shift-cmd-0': 'window:reset-font-size' | |
| '.platform-darwin': |