[Add] RegulaCommonStage 7.5.928
[CocoaPods.git] / Specs / 0 / f / d / SCHTTPClient / 1.0.0 / SCHTTPClient.podspec.json
bloba892a7fb9b3249f0a1cca57974264ceadee53046
2   "name": "SCHTTPClient",
3   "version": "1.0.0",
4   "summary": "A modern HTTP client framework for iOS/OSX built on top of libcurl.",
5   "homepage": "https://github.com/debugly/SCHTTPClient.git",
6   "license": {
7     "type": "Apache License, Version 2.0",
8     "file": "LICENSE"
9   },
10   "authors": {
11     "debugly": "qianlongxu@gmail.com"
12   },
13   "source": {
14     "git": "https://github.com/debugly/SCHTTPClient.git",
15     "tag": "1.0.0"
16   },
17   "requires_arc": true,
18   "platforms": {
19     "ios": "8.0",
20     "osx": "10.10"
21   },
22   "ios": {
23     "preserve_paths": "External/libcurl.iOS"
24   },
25   "osx": {
26     "preserve_paths": "External/libcurl.OSX"
27   },
28   "subspecs": [
29     {
30       "name": "LibCurl",
31       "ios": {
32         "source_files": "External/libcurl.iOS/*.h",
33         "vendored_libraries": "External/libcurl.iOS/libcurl.iOS.a"
34       },
35       "osx": {
36         "source_files": "External/libcurl.OSX/*.h",
37         "vendored_libraries": "External/libcurl.OSX/libcurl.OSX.a"
38       }
39     },
40     {
41       "name": "Client",
42       "source_files": "SCHTTPClient/**/*.{h,m}",
43       "libraries": "z",
44       "frameworks": [
45         "Security"
46       ],
47       "ios": {
48         "frameworks": [
49           "MobileCoreServices",
50           "UIKit"
51         ]
52       },
53       "osx": {
54         "frameworks": [
55           "CoreServices",
56           "AppKit"
57         ]
58       },
59       "dependencies": {
60         "SCHTTPClient/LibCurl": [
62         ]
63       },
64       "private_header_files": "SCHTTPClient/Internal/*.h",
65       "prefix_header_contents": "#import <Availability.h>\n\n#if __IPHONE_OS_VERSION_MIN_REQUIRED\n    #import <MobileCoreServices/MobileCoreServices.h>\n#else\n    #import <CoreServices/CoreServices.h>\n#endif"
66     }
67   ]