Nick Brook

Results 36 comments of Nick Brook

Classmap is used to auto load libraries that do not comply with psr-0, so you don't need to use namespaces. As you can see in my pull request it doesn't...

This pull request https://github.com/thisandagain/semver/pull/30 contains a fix (from https://github.com/thisandagain/semver/pull/14 which was closed) and other project updates

Temp fix: ``` this.router = new Router(); var oldGetFragment = this.router.history.getFragment; this.router.history.getFragment = function (fragment) { if(fragment) { var root = this.root.slice(1); if (!fragment.indexOf(root)) fragment = fragment.slice(root.length); } return oldGetFragment.call(this,...

This happens because the permissions of chisel/lib/Chisel.framework/_CodeSignature/CodeResources are read only in the tar.gz file. This file must have write permissions for code signing to succeed. This seems like a packaging...

I figured it out - I used your example as a starting point, and then I just had to set the inputView of the first responder to the view of...

I agree that this project is still very useful. I have frameworks that depend on frameworks that depend on frameworks and libraries, and it is not feasible or desirable to...

This issue occurs in Xcode 6 beta, the if statement needs to be ``` if [[ "$XCODE_VERSION_MAJOR" = "0500" || "$XCODE_VERSION_MAJOR" = "0600" ]] ``` however, Xcode 6 supports cocoa...

That sounds good although it would also be useful to have an option on “source” for curl flags, but I’m just hoping for any solution at the moment as I...

Also other past (and future) versions of macOS might have this issue, 7.54.0 is not a very recent release, so it might be better just to disable http2 until Apple...