[Add] EverlinkBroadcastSDK 3.1.1
[CocoaPods.git] / Specs / 4 / 3 / f / Cerfing / 2.0.2 / Cerfing.podspec.json
blob071d62d1a0528695c343537dd090c941ddd597c4
2   "name": "Cerfing",
3   "version": "2.0.2",
4   "summary": "Lightweight json-based network protocol for rapid prototyping",
5   "description": "I like constructing simple network protocols from plist/json-safe dictionaries, and transmit them over a socket as json, with as little framing as possible. Easy to prototype with, easy to debug. Give Cerfing an AsyncSocket, and it:\n\n* Will wrap the socket to send JSON-serialized dictionaries over it\n* Has a simple request-response system\n* Supports Arbitrary NSData attachments\n* Has an automatic 'delegate dispatching' feature, where the correct ObjC method is called based on the contents of the incoming method (very simplistic RPC)\n\nIt can also:\n\n* Support other serializations than JSON;\n* Be interleaved with another network protocol\n* Wrap other socket libraries than AsyncSocket using a 'transport' abstraction.",
6   "homepage": "https://github.com/nevyn/Cerfing",
7   "license": {
8     "type": "Simplified BSD",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Nevyn Bengtsson": "nevyn.jpg@gmail.com"
13   },
14   "social_media_url": "http://twitter.com/nevyn",
15   "source": {
16     "git": "https://github.com/nevyn/Cerfing.git",
17     "tag": "2.0.2"
18   },
19   "platforms": {
20     "ios": "7.0",
21     "osx": "10.9"
22   },
23   "source_files": [
24     "Cerfing",
25     "Cerfing/**/*.{h,m}"
26   ],
27   "header_mappings_dir": "Cerfing",
28   "ios": {
29     "frameworks": "Foundation"
30   },
31   "osx": {
32     "frameworks": [
33       "Foundation",
34       "CoreServices"
35     ]
36   }