Kevin Renskers
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.    ``` 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?