[Add] THEOplayer-Connector-Comscore 5.0.1
[CocoaPods.git] / Specs / 2 / 8 / b / OHHTTPStubs / 6.0.0 / OHHTTPStubs.podspec.json
blob91abf8b65476a9275c271ec0abb323da0deb62d7
2   "name": "OHHTTPStubs",
3   "version": "6.0.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.0.0"
14   },
15   "frameworks": [
16     "Foundation",
17     "CFNetwork"
18   ],
19   "requires_arc": true,
20   "platforms": {
21     "ios": "5.0",
22     "osx": "10.9",
23     "watchos": "2.0",
24     "tvos": "9.0"
25   },
26   "default_subspecs": "Default",
27   "pushed_with_swift_version": "3.0",
28   "subspecs": [
29     {
30       "name": "Default",
31       "dependencies": {
32         "OHHTTPStubs/Core": [
34         ],
35         "OHHTTPStubs/NSURLSession": [
37         ],
38         "OHHTTPStubs/JSON": [
40         ],
41         "OHHTTPStubs/OHPathHelpers": [
43         ]
44       }
45     },
46     {
47       "name": "Core",
48       "source_files": "OHHTTPStubs/Sources/*.{h,m}",
49       "public_header_files": "OHHTTPStubs/Sources/*.h"
50     },
51     {
52       "name": "NSURLSession",
53       "dependencies": {
54         "OHHTTPStubs/Core": [
56         ]
57       },
58       "source_files": "OHHTTPStubs/Sources/NSURLSession/*.{h,m}",
59       "private_header_files": "OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.h"
60     },
61     {
62       "name": "JSON",
63       "dependencies": {
64         "OHHTTPStubs/Core": [
66         ]
67       },
68       "source_files": "OHHTTPStubs/Sources/JSON/*.{h,m}",
69       "public_header_files": "OHHTTPStubs/Sources/JSON/*.h"
70     },
71     {
72       "name": "HTTPMessage",
73       "dependencies": {
74         "OHHTTPStubs/Core": [
76         ]
77       },
78       "source_files": "OHHTTPStubs/Sources/HTTPMessage/*.{h,m}",
79       "public_header_files": "OHHTTPStubs/Sources/HTTPMessage/*.h"
80     },
81     {
82       "name": "Mocktail",
83       "dependencies": {
84         "OHHTTPStubs/Core": [
86         ]
87       },
88       "source_files": "OHHTTPStubs/Sources/Mocktail/*.{h,m}",
89       "public_header_files": "OHHTTPStubs/Sources/Mocktail/*.h"
90     },
91     {
92       "name": "OHPathHelpers",
93       "source_files": [
94         "OHHTTPStubs/Sources/OHPathHelpers/*.{h,m}",
95         "OHHTTPStubs/Sources/Compatibility.h"
96       ],
97       "public_header_files": [
98         "OHHTTPStubs/Sources/OHPathHelpers/*.h",
99         "OHHTTPStubs/Sources/Compatibility.h"
100       ]
101     },
102     {
103       "name": "Swift",
104       "platforms": {
105         "ios": "8.0",
106         "osx": "10.9",
107         "watchos": "2.0",
108         "tvos": "9.0"
109       },
110       "dependencies": {
111         "OHHTTPStubs/Default": [
113         ]
114       },
115       "source_files": "OHHTTPStubs/Sources/Swift/*.swift"
116     }
117   ]