[Add] DSPSDK 1.0.1.8
[CocoaPods.git] / Specs / 9 / d / 8 / GoogleAPISwiftClient / 0.1.0 / GoogleAPISwiftClient.podspec.json
blob2b623d4aa0b06eea79499e822bc5654229d6f628
2   "name": "GoogleAPISwiftClient",
3   "version": "0.1.0",
4   "summary": "A Google API Client for Cocoa and Cocoa Touch in 2015",
5   "description": "                   A lot of us probably use at least one of Google's public data APIs, and those of us using Cocoa and Cocoa Touch are directed to the open-source [Google APIs Objective-C Client](https://code.google.com/p/google-api-objectivec-client/) for implementation help.\n                   It was good for what it was in 2011, but that was before Swift, modern Objective-C, CocoaPods, and even Automatic Reference Counting! Some things in life age well; that library is not one of them. And Google hasn't helped by basically ignoring their client library in these ways.\n                   That's why I decided I would try something new. Something that would actually utilize current technologies. Something that would be actually nice for devs to use.\n                   I couldn't find what I was looking for, so I decided to build it myself.\n                   This current version only contains the base model and fetcher classes and protocols. I have another branch set up for the first service to be implemented, which is Blogger.\n",
6   "homepage": "https://github.com/mattwyskiel/GoogleAPISwiftClient",
7   "license": "Apache License, Version 2.0",
8   "authors": {
9     "Matthew Wyskiel": "mwyskiel@optonline.net"
10   },
11   "social_media_url": "https://twitter.com/mattwyskiel",
12   "platforms": {
13     "ios": "8.0",
14     "osx": "10.9"
15   },
16   "source": {
17     "git": "https://github.com/mattwyskiel/GoogleAPISwiftClient.git",
18     "tag": "0.1.0"
19   },
20   "frameworks": "Foundation",
21   "requires_arc": true,
22   "dependencies": {
23     "Alamofire": [
24       "~> 1.2"
25     ],
26     "ObjectMapper": [
27       "~> 0.11"
28     ]
29   },
30   "module_name": "GoogleAPIs",
31   "default_subspecs": "Common",
32   "subspecs": [
33     {
34       "name": "Common",
35       "source_files": "GoogleClient/*.{swift}"
36     },
37     {
38       "name": "Discovery",
39       "source_files": "GoogleClient/Discovery/*.{swift}",
40       "dependencies": {
41         "GoogleAPISwiftClient/Common": [
43         ]
44       }
45     }
46   ]