Brian King
Brian King
Hey @mattwyskiel -- thanks for the bug! I'm pretty swamped right now, but will try to get to it soon.
Excellent! I think the `diff` use case is very compelling. I believe that I take those 3 things into account though. Do you have an example that should be more...
Yea, that is interesting. The [web app](https://github.com/KingOfBrian/EjectAssist) could be passed 2 file URLs and generate a diff. Then there could be a `diff` button injected via javascript which would open...
Predicate debugging is crashing when using the indexPath helpers.
Adding constraint libraries should work easily, by adding another instance of a [ConstraintCodeGenerator](https://github.com/Raizlabs/Eject/blob/master/EjectKit/CodeGenerators/ConstraintCodeGenerator.swift), but the code generation is still pretty primitive. This will need some structural enhancement to support the...
I'm not sure that answer is entirely correct. __autoreleasing is the default storage type in that scenario, and because of that I find adding __autoreleasing to be confusing. I like...
Yea, at the bottom of: https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/CodingGuidelines/Articles/NamingMethods.html#//apple_ref/doc/uid/20001282-1003829-BCIBDJCA
I just realized that dot notation works on class names. I think this may take out some objections. Code completion doesn't work, but it compiles fine. ``` objective-c UIApplication.sharedApplication.keyWindow.rootViewController.view.frame ```...