[Add] FCVideo 3.2.21
[CocoaPods.git] / Specs / 3 / 0 / 6 / JWPocketSocket / 0.7.0 / JWPocketSocket.podspec.json
blob463985984da85e97b10477747a8857b6eea2bd26
2   "name": "JWPocketSocket",
3   "version": "0.7.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/fuzzybinary/PocketSocket.git",
13     "tag": "0.7.0",
14     "submodules": false
15   },
16   "requires_arc": true,
17   "module_name": "PocketSocket",
18   "platforms": {
19     "ios": "6.0",
20     "osx": "10.9",
21     "tvos": "9.0"
22   },
23   "subspecs": [
24     {
25       "name": "Core",
26       "public_header_files": [
27         "PocketSocket/PSWebSocketDriver.h",
28         "PocketSocket/PSWebSocketTypes.h"
29       ],
30       "source_files": [
31         "PocketSocket/PSWebSocketDriver.{h,m}",
32         "PocketSocket/PSWebSocketTypes.{h,m}",
33         "PocketSocket/PSWebSocketBuffer.{h,m}",
34         "PocketSocket/PSWebSocketDeflater.{h,m}",
35         "PocketSocket/PSWebSocketInflater.{h,m}",
36         "PocketSocket/PSWebSocketUTF8Decoder.{h,m}",
37         "PocketSocket/PSWebSocketInternal.h"
38       ],
39       "frameworks": [
40         "CFNetwork",
41         "Foundation",
42         "Security"
43       ],
44       "libraries": [
45         "z",
46         "system"
47       ]
48     },
49     {
50       "name": "Client",
51       "dependencies": {
52         "JWPocketSocket/Core": [
54         ]
55       },
56       "public_header_files": "PocketSocket/PSWebSocket.h",
57       "source_files": [
58         "PocketSocket/PSWebSocket.{h,m}",
59         "PocketSocket/PSWebSocketNetworkThread.{h,m}"
60       ]
61     },
62     {
63       "name": "Server",
64       "dependencies": {
65         "JWPocketSocket/Client": [
67         ]
68       },
69       "public_header_files": "PocketSocket/PSWebSocketServer.h",
70       "source_files": "PocketSocket/PSWebSocketServer.{h,m}"
71     }
72   ]