Ape - A light wrapper on NSURLSessionDataTask that makes rest APIs a little bit easier
A tiny library I've being using to simplify some REST api tasks. Think of it as solving some of the problems Alamofire does, but it's under 100 lines of code so you can wrap your head around the whole thing. 🙈🙊🙉
Example usage:
_ = Ape(url: request) { resp in guard case .JSON(let json) = resp.body else { return } print("json is \(json)") }








