[Add] GluedInFeedSDK 2.5.1
[CocoaPods.git] / Specs / 4 / 1 / 9 / XMPPFramework / 4.0.0 / XMPPFramework.podspec.json
blobfefe6f14b4644a751e8b52c91e9f87deec550e17
2   "name": "XMPPFramework",
3   "version": "4.0.0",
4   "platforms": {
5     "osx": "10.9",
6     "ios": "8.0",
7     "tvos": "9.0"
8   },
9   "license": {
10     "type": "BSD",
11     "file": "copying.txt"
12   },
13   "summary": "An XMPP Framework in Objective-C for the Mac / iOS development community.",
14   "homepage": "https://github.com/robbiehanson/XMPPFramework",
15   "authors": {
16     "Robbie Hanson": "robbiehanson@deusty.com"
17   },
18   "source": {
19     "git": "https://github.com/robbiehanson/XMPPFramework.git",
20     "tag": "4.0.0"
21   },
22   "description": "XMPPFramework provides a core implementation of RFC-3920 (the xmpp standard), along with\n  the tools needed to read & write XML. It comes with multiple popular extensions (XEPs),\n  all built atop a modular architecture, allowing you to plug-in any code needed for the job.\n  Additionally the framework is massively parallel and thread-safe. Structured using GCD,\n  this framework performs    well regardless of whether it's being run on an old iPhone, or\n  on a 12-core Mac Pro. (And it won't block the main thread... at all).",
23   "requires_arc": true,
24   "default_subspecs": "default",
25   "subspecs": [
26     {
27       "name": "default",
28       "source_files": [
29         "Core/**/*.{h,m}",
30         "Authentication/**/*.{h,m}",
31         "Categories/**/*.{h,m}",
32         "Utilities/**/*.{h,m}",
33         "Extensions/**/*.{h,m}"
34       ],
35       "ios": {
36         "exclude_files": "Extensions/SystemInputActivityMonitor/**/*.{h,m}"
37       },
38       "libraries": [
39         "xml2",
40         "resolv"
41       ],
42       "frameworks": [
43         "CoreData",
44         "SystemConfiguration",
45         "CoreLocation"
46       ],
47       "xcconfig": {
48         "HEADER_SEARCH_PATHS": "$(SDKROOT)/usr/include/libxml2 $(SDKROOT)/usr/include/libresolv"
49       },
50       "resources": [
51         "Extensions/**/*.{xcdatamodel,xcdatamodeld}"
52       ],
53       "dependencies": {
54         "CocoaLumberjack": [
56         ],
57         "CocoaAsyncSocket": [
58           "~> 7.6"
59         ],
60         "KissXML": [
61           "~> 5.2"
62         ],
63         "libidn": [
64           "~> 1.35"
65         ]
66       }
67     },
68     {
69       "name": "Swift",
70       "platforms": {
71         "ios": "8.0",
72         "tvos": "9.0",
73         "osx": "10.10"
74       },
75       "source_files": "Swift/**/*.swift",
76       "dependencies": {
77         "XMPPFramework/default": [
79         ],
80         "CocoaLumberjack/Swift": [
82         ]
83       }
84     }
85   ]