[Add] HyperTrident 2.2.2.3
[CocoaPods.git] / Specs / 1 / 9 / f / PocketSocket / 1.0.0 / PocketSocket.podspec.json
blob0dae6577d02ef08c09bf4798794e3d18433e28b9
2   "name": "PocketSocket",
3   "version": "1.0.0",
4   "license": "Apache 2.0",
5   "summary": "Objective-C websocket client/server library for building things that work in realtime on iOS and OS X.",
6   "description": "Objective-C websocket client/server library. Conforms fully to RFC6455 websocket protocol, support for websocket compression via the permessage-deflate extension, passes all ~355 Autobahn tests with 100% compliance and comes with a driver level BYO networking API.",
7   "homepage": "https://github.com/zwopple/PocketSocket",
8   "authors": {
9     "Robert Payne": "robert@zwopple.com"
10   },
11   "source": {
12     "git": "https://github.com/zwopple/PocketSocket.git",
13     "tag": "1.0.0",
14     "submodules": false
15   },
16   "requires_arc": true,
17   "platforms": {
18     "ios": "6.0",
19     "osx": "10.8",
20     "tvos": "9.0"
21   },
22   "subspecs": [
23     {
24       "name": "Core",
25       "public_header_files": [
26         "PocketSocket/PSWebSocketDriver.h",
27         "PocketSocket/PSWebSocketTypes.h"
28       ],
29       "source_files": [
30         "PocketSocket/PSWebSocketDriver.{h,m}",
31         "PocketSocket/PSWebSocketTypes.{h,m}",
32         "PocketSocket/PSWebSocketBuffer.{h,m}",
33         "PocketSocket/PSWebSocketDeflater.{h,m}",
34         "PocketSocket/PSWebSocketInflater.{h,m}",
35         "PocketSocket/PSWebSocketUTF8Decoder.{h,m}",
36         "PocketSocket/PSWebSocketInternal.h"
37       ],
38       "frameworks": [
39         "CFNetwork",
40         "Foundation",
41         "Security"
42       ],
43       "libraries": [
44         "z",
45         "system"
46       ]
47     },
48     {
49       "name": "Client",
50       "dependencies": {
51         "PocketSocket/Core": [
53         ]
54       },
55       "public_header_files": "PocketSocket/PSWebSocket.h",
56       "source_files": [
57         "PocketSocket/PSWebSocket.{h,m}",
58         "PocketSocket/PSWebSocketNetworkThread.{h,m}"
59       ]
60     },
61     {
62       "name": "Server",
63       "dependencies": {
64         "PocketSocket/Client": [
66         ]
67       },
68       "public_header_files": "PocketSocket/PSWebSocketServer.h",
69       "source_files": "PocketSocket/PSWebSocketServer.{h,m}"
70     }
71   ]