-
Notifications
You must be signed in to change notification settings - Fork 598
Expand file tree
/
Copy pathOHHTTPStubs.podspec.json
More file actions
129 lines (120 loc) · 3.38 KB
/
OHHTTPStubs.podspec.json
File metadata and controls
129 lines (120 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "OHHTTPStubs",
"version": "9.1.0",
"summary": "Framework to stub your network requests like HTTP and help you write network unit tests with XCTest.",
"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",
"homepage": "https://github.com/AliSoftware/OHHTTPStubs",
"license": "MIT",
"authors": {
"Olivier Halligon": "olivier.halligon+ae@gmail.com"
},
"source": {
"git": "https://github.com/AliSoftware/OHHTTPStubs.git",
"tag": "9.1.0"
},
"frameworks": [
"Foundation",
"CFNetwork"
],
"requires_arc": true,
"platforms": {
"ios": "12.0",
"osx": "10.13",
"watchos": "4.0",
"tvos": "12.0"
},
"swift_versions": [
"4.0",
"4.1",
"4.2",
"5.0",
"5.1",
"5.2",
"5.3",
"5.4",
"5.5"
],
"default_subspecs": "Default",
"subspecs": [
{
"name": "Default",
"dependencies": {
"OHHTTPStubs/Core": [
],
"OHHTTPStubs/NSURLSession": [
],
"OHHTTPStubs/JSON": [
],
"OHHTTPStubs/OHPathHelpers": [
]
}
},
{
"name": "Core",
"source_files": [
"Sources/OHHTTPStubs/**/HTTPStubs.{h,m}",
"Sources/OHHTTPStubs/**/HTTPStubsResponse.{h,m}",
"Sources/OHHTTPStubs/include/Compatibility.h"
]
},
{
"name": "NSURLSession",
"dependencies": {
"OHHTTPStubs/Core": [
]
},
"source_files": [
"Sources/OHHTTPStubs/**/NSURLRequest+HTTPBodyTesting.{h,m}",
"Sources/OHHTTPStubs/**/HTTPStubs+NSURLSessionConfiguration.{h,m}",
"Sources/OHHTTPStubs/**/HTTPStubsMethodSwizzling.{h,m}"
],
"private_header_files": "Sources/OHHTTPStubs/**/HTTPStubsMethodSwizzling.h"
},
{
"name": "JSON",
"dependencies": {
"OHHTTPStubs/Core": [
]
},
"source_files": "Sources/OHHTTPStubs/**/HTTPStubsResponse+JSON.{h,m}"
},
{
"name": "HTTPMessage",
"dependencies": {
"OHHTTPStubs/Core": [
]
},
"source_files": "Sources/HTTPMessage/**/*.{h,m}"
},
{
"name": "Mocktail",
"dependencies": {
"OHHTTPStubs/Core": [
]
},
"source_files": "Sources/Mocktail/**/*.{h,m}"
},
{
"name": "OHPathHelpers",
"source_files": [
"Sources/OHHTTPStubs/**/HTTPStubsPathHelpers.{h,m}",
"Sources/OHHTTPStubs/include/Compatibility.h"
]
},
{
"name": "Swift",
"platforms": {
"ios": "11.0",
"osx": "10.9",
"watchos": "2.0",
"tvos": "9.0"
},
"dependencies": {
"OHHTTPStubs/Default": [
]
},
"source_files": "Sources/OHHTTPStubsSwift/*.swift"
}
],
"swift_version": "5.5"
}