[Add] ZJSDK 2.5.8.10
[CocoaPods.git] / Specs / 2 / 8 / b / OHHTTPStubs / 4.5.1 / OHHTTPStubs.podspec.json
blobd7a4a9ea8c78cb0564bffbf4104cf3c566ef2db0
2   "name": "OHHTTPStubs",
3   "version": "4.5.1",
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": "4.5.1"
14   },
15   "frameworks": [
16     "Foundation",
17     "CFNetwork"
18   ],
19   "requires_arc": true,
20   "platforms": {
21     "ios": "5.0",
22     "osx": "10.7",
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     },
59     {
60       "name": "JSON",
61       "dependencies": {
62         "OHHTTPStubs/Core": [
64         ]
65       },
66       "source_files": "OHHTTPStubs/Sources/JSON/*.{h,m}",
67       "public_header_files": "OHHTTPStubs/Sources/JSON/*.h"
68     },
69     {
70       "name": "HTTPMessage",
71       "dependencies": {
72         "OHHTTPStubs/Core": [
74         ]
75       },
76       "source_files": "OHHTTPStubs/Sources/HTTPMessage/*.{h,m}",
77       "public_header_files": "OHHTTPStubs/Sources/HTTPMessage/*.h"
78     },
79     {
80       "name": "Mocktail",
81       "dependencies": {
82         "OHHTTPStubs/Core": [
84         ]
85       },
86       "source_files": "OHHTTPStubs/Sources/Mocktail/*.{h,m}",
87       "public_header_files": "OHHTTPStubs/Sources/Mocktail/*.h"
88     },
89     {
90       "name": "OHPathHelpers",
91       "source_files": [
92         "OHHTTPStubs/Sources/OHPathHelpers/*.{h,m}",
93         "OHHTTPStubs/Sources/Compatibility.h"
94       ],
95       "public_header_files": [
96         "OHHTTPStubs/Sources/OHPathHelpers/*.h",
97         "OHHTTPStubs/Sources/Compatibility.h"
98       ]
99     },
100     {
101       "name": "Swift",
102       "platforms": {
103         "ios": "8.0",
104         "osx": "10.9",
105         "watchos": "2.0",
106         "tvos": "9.0"
107       },
108       "dependencies": {
109         "OHHTTPStubs/Core": [
111         ]
112       },
113       "source_files": "OHHTTPStubs/Sources/Swift/*.swift"
114     }
115   ]