[Add] ZJSDK 2.5.8.10
[CocoaPods.git] / Specs / 2 / 8 / b / OHHTTPStubs / 6.2.0 / OHHTTPStubs.podspec.json
blob8a2fceb7cc78d2499d78521bf325cc95e4ba1e5d
2   "name": "OHHTTPStubs",
3   "version": "6.2.0",
4   "summary": "Framework to stub your network requests like HTTP and help you write network unit tests with XCTest.",
5   "description": "A class to stub network requests easily:\n\n * Test your apps with fake network data (stubbed from file)\n * You can also customize your response headers and status code\n * Use customized stubs depending on the requests\n * Use custom response time to simulate slow network.\n * This works with any request (HTTP, HTTPS, or any protocol) sent using\n   the iOS URL Loading System (NSURLConnection, NSURLSession, AFNetworking, …)\n * This is really useful in unit testing, when you need to test network features\n   but don't want to hit the real network and fake some response data instead.\n * Has useful convenience methods to stub JSON content or fixture from a file\n * Compatible with Swift",
6   "homepage": "https://github.com/AliSoftware/OHHTTPStubs",
7   "license": "MIT",
8   "authors": {
9     "Olivier Halligon": "olivier.halligon+ae@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/AliSoftware/OHHTTPStubs.git",
13     "tag": "6.2.0"
14   },
15   "frameworks": [
16     "Foundation",
17     "CFNetwork"
18   ],
19   "requires_arc": true,
20   "platforms": {
21     "ios": "7.0",
22     "osx": "10.9",
23     "watchos": "2.0",
24     "tvos": "9.0"
25   },
26   "default_subspecs": "Default",
27   "subspecs": [
28     {
29       "name": "Default",
30       "dependencies": {
31         "OHHTTPStubs/Core": [
33         ],
34         "OHHTTPStubs/NSURLSession": [
36         ],
37         "OHHTTPStubs/JSON": [
39         ],
40         "OHHTTPStubs/OHPathHelpers": [
42         ]
43       }
44     },
45     {
46       "name": "Core",
47       "source_files": "OHHTTPStubs/Sources/*.{h,m}",
48       "public_header_files": "OHHTTPStubs/Sources/*.h"
49     },
50     {
51       "name": "NSURLSession",
52       "dependencies": {
53         "OHHTTPStubs/Core": [
55         ]
56       },
57       "source_files": "OHHTTPStubs/Sources/NSURLSession/*.{h,m}",
58       "private_header_files": "OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.h"
59     },
60     {
61       "name": "JSON",
62       "dependencies": {
63         "OHHTTPStubs/Core": [
65         ]
66       },
67       "source_files": "OHHTTPStubs/Sources/JSON/*.{h,m}",
68       "public_header_files": "OHHTTPStubs/Sources/JSON/*.h"
69     },
70     {
71       "name": "HTTPMessage",
72       "dependencies": {
73         "OHHTTPStubs/Core": [
75         ]
76       },
77       "source_files": "OHHTTPStubs/Sources/HTTPMessage/*.{h,m}",
78       "public_header_files": "OHHTTPStubs/Sources/HTTPMessage/*.h"
79     },
80     {
81       "name": "Mocktail",
82       "dependencies": {
83         "OHHTTPStubs/Core": [
85         ]
86       },
87       "source_files": "OHHTTPStubs/Sources/Mocktail/*.{h,m}",
88       "public_header_files": "OHHTTPStubs/Sources/Mocktail/*.h"
89     },
90     {
91       "name": "OHPathHelpers",
92       "source_files": [
93         "OHHTTPStubs/Sources/OHPathHelpers/*.{h,m}",
94         "OHHTTPStubs/Sources/Compatibility.h"
95       ],
96       "public_header_files": [
97         "OHHTTPStubs/Sources/OHPathHelpers/*.h",
98         "OHHTTPStubs/Sources/Compatibility.h"
99       ]
100     },
101     {
102       "name": "Swift",
103       "platforms": {
104         "ios": "8.0",
105         "osx": "10.9",
106         "watchos": "2.0",
107         "tvos": "9.0"
108       },
109       "dependencies": {
110         "OHHTTPStubs/Default": [
112         ]
113       },
114       "source_files": "OHHTTPStubs/Sources/Swift/*.swift"
115     }
116   ]