Kevin Renskers

Results 167 comments of Kevin Renskers

Haven't really looked into this myself, @nicklockwood any chance you could take a look please?

Looks like it. Here's hoping for a new release soon :)

I do use PathKit in my static site generator [Saga](https://github.com/loopwerk/Saga), and have a PR open that adds Codable support. I'd be happy to be added as a contributor as well,...

I've just included this project into my Django app, and I was extremely surprised when I saw a whole bunch of queries show up saying they were repeated 1 time,...

Also, when I look at the code, I image that if the cancelling did work, the `.fail` handler would be called with a network error, right? Because it doesn't go...

Update on the `cancelAllRequests` problem I am seeing: because `self.queue.addOperation(operation)` is itself done within an async operation (namely the `middlewarePromise`), by the time `cancelAllRequests` is executed, the queue is still...

Compare to something like this: ``` enum Endpoint: RequestConvertible { case login(username: String, password: String) static var baseUrl: URLStringConvertible? = "http://127.0.0.1:8000/api" static var headers: [String: String] = [ "Accept": "application/json",...

Same problem here. REFrostedViewController and my menu view controller are instantiated from a storyboard. The menu view controller is a UIViewController subclass and contains a UITableView. When the menu is...

Same problem when direction is top. First time the menu has the wrong size, after that it fixes itself. ![1](https://f.cloud.github.com/assets/229384/2066163/42f5eafc-8ceb-11e3-82e4-5bf216d22de0.png) ![2](https://f.cloud.github.com/assets/229384/2066164/42f74b36-8ceb-11e3-85ce-1c06c201d6e2.png) ![3](https://f.cloud.github.com/assets/229384/2066165/42fabd02-8ceb-11e3-8a9f-6c9b7eca7f6a.png) ``` objc - (void)awakeFromNib { self.direction = REFrostedViewControllerDirectionTop;...

That works, but I am wondering if this wouldn't be nicer to add to the router instead of copying this to every component?