[Add] ZJSDK 2.5.8.10
[CocoaPods.git] / Specs / 2 / 8 / b / OHHTTPStubs / 4.3.0 / OHHTTPStubs.podspec.json
bloba1bed261642edfba4d44aa0571490d12053836ab
2   "name": "OHHTTPStubs",
3   "version": "4.3.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": "4.3.0"
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   },
25   "default_subspecs": "Default",
26   "subspecs": [
27     {
28       "name": "Default",
29       "dependencies": {
30         "OHHTTPStubs/Core": [
32         ],
33         "OHHTTPStubs/NSURLSession": [
35         ],
36         "OHHTTPStubs/JSON": [
38         ],
39         "OHHTTPStubs/OHPathHelpers": [
41         ]
42       }
43     },
44     {
45       "name": "Core",
46       "source_files": "OHHTTPStubs/Sources/*.{h,m}",
47       "public_header_files": "OHHTTPStubs/Sources/*.h"
48     },
49     {
50       "name": "NSURLSession",
51       "dependencies": {
52         "OHHTTPStubs/Core": [
54         ]
55       },
56       "source_files": "OHHTTPStubs/Sources/NSURLSession/*.{h,m}"
57     },
58     {
59       "name": "JSON",
60       "dependencies": {
61         "OHHTTPStubs/Core": [
63         ]
64       },
65       "source_files": "OHHTTPStubs/Sources/JSON/*.{h,m}",
66       "public_header_files": "OHHTTPStubs/Sources/JSON/*.h"
67     },
68     {
69       "name": "HTTPMessage",
70       "dependencies": {
71         "OHHTTPStubs/Core": [
73         ]
74       },
75       "source_files": "OHHTTPStubs/Sources/HTTPMessage/*.{h,m}",
76       "public_header_files": "OHHTTPStubs/Sources/HTTPMessage/*.h"
77     },
78     {
79       "name": "Mocktail",
80       "dependencies": {
81         "OHHTTPStubs/Core": [
83         ]
84       },
85       "source_files": "OHHTTPStubs/Sources/Mocktail/*.{h,m}",
86       "public_header_files": "OHHTTPStubs/Sources/Mocktail/*.h"
87     },
88     {
89       "name": "OHPathHelpers",
90       "source_files": [
91         "OHHTTPStubs/Sources/OHPathHelpers/*.{h,m}",
92         "OHHTTPStubs/Sources/Compatibility.h"
93       ],
94       "public_header_files": [
95         "OHHTTPStubs/Sources/OHPathHelpers/*.h",
96         "OHHTTPStubs/Sources/Compatibility.h"
97       ]
98     },
99     {
100       "name": "Swift",
101       "platforms": {
102         "ios": "8.0"
103       },
104       "dependencies": {
105         "OHHTTPStubs/Core": [
107         ]
108       },
109       "source_files": "OHHTTPStubs/Sources/Swift/*.swift"
110     }
111   ]