summaryrefslogtreecommitdiff
path: root/test/ios/OHHTTPStubs/Examples/ObjC/Pods/Local Podspecs/OHHTTPStubs.podspec.json
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2015-10-16 10:44:17 -0700
committerMinh Nguyễn <mxn@1ec5.org>2015-10-16 14:58:48 -0700
commitebf81a1e2742cc536bb84c0a057814f303b34da8 (patch)
tree646b5ccccc08df3f91c7647c0d6aa6e64d786e7e /test/ios/OHHTTPStubs/Examples/ObjC/Pods/Local Podspecs/OHHTTPStubs.podspec.json
parent6c49f8a5789698225442430737b5b4b083edea77 (diff)
downloadqtlocation-mapboxgl-ebf81a1e2742cc536bb84c0a057814f303b34da8.tar.gz
[iOS] Upgraded to AliSoftware/OHHTTPStubs@4.3.0
Diffstat (limited to 'test/ios/OHHTTPStubs/Examples/ObjC/Pods/Local Podspecs/OHHTTPStubs.podspec.json')
-rw-r--r--test/ios/OHHTTPStubs/Examples/ObjC/Pods/Local Podspecs/OHHTTPStubs.podspec.json100
1 files changed, 93 insertions, 7 deletions
diff --git a/test/ios/OHHTTPStubs/Examples/ObjC/Pods/Local Podspecs/OHHTTPStubs.podspec.json b/test/ios/OHHTTPStubs/Examples/ObjC/Pods/Local Podspecs/OHHTTPStubs.podspec.json
index 3be5f2250f..a1bed26164 100644
--- a/test/ios/OHHTTPStubs/Examples/ObjC/Pods/Local Podspecs/OHHTTPStubs.podspec.json
+++ b/test/ios/OHHTTPStubs/Examples/ObjC/Pods/Local Podspecs/OHHTTPStubs.podspec.json
@@ -1,8 +1,8 @@
{
"name": "OHHTTPStubs",
- "version": "4.0.1",
+ "version": "4.3.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\n",
+ "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": {
@@ -10,10 +10,8 @@
},
"source": {
"git": "https://github.com/AliSoftware/OHHTTPStubs.git",
- "tag": "4.0.1"
+ "tag": "4.3.0"
},
- "source_files": "OHHTTPStubs/Sources/*.{h,m}",
- "public_header_files": "OHHTTPStubs/Sources/*.h",
"frameworks": [
"Foundation",
"CFNetwork"
@@ -21,6 +19,94 @@
"requires_arc": true,
"platforms": {
"ios": "5.0",
- "osx": "10.7"
- }
+ "osx": "10.7",
+ "watchos": "2.0"
+ },
+ "default_subspecs": "Default",
+ "subspecs": [
+ {
+ "name": "Default",
+ "dependencies": {
+ "OHHTTPStubs/Core": [
+
+ ],
+ "OHHTTPStubs/NSURLSession": [
+
+ ],
+ "OHHTTPStubs/JSON": [
+
+ ],
+ "OHHTTPStubs/OHPathHelpers": [
+
+ ]
+ }
+ },
+ {
+ "name": "Core",
+ "source_files": "OHHTTPStubs/Sources/*.{h,m}",
+ "public_header_files": "OHHTTPStubs/Sources/*.h"
+ },
+ {
+ "name": "NSURLSession",
+ "dependencies": {
+ "OHHTTPStubs/Core": [
+
+ ]
+ },
+ "source_files": "OHHTTPStubs/Sources/NSURLSession/*.{h,m}"
+ },
+ {
+ "name": "JSON",
+ "dependencies": {
+ "OHHTTPStubs/Core": [
+
+ ]
+ },
+ "source_files": "OHHTTPStubs/Sources/JSON/*.{h,m}",
+ "public_header_files": "OHHTTPStubs/Sources/JSON/*.h"
+ },
+ {
+ "name": "HTTPMessage",
+ "dependencies": {
+ "OHHTTPStubs/Core": [
+
+ ]
+ },
+ "source_files": "OHHTTPStubs/Sources/HTTPMessage/*.{h,m}",
+ "public_header_files": "OHHTTPStubs/Sources/HTTPMessage/*.h"
+ },
+ {
+ "name": "Mocktail",
+ "dependencies": {
+ "OHHTTPStubs/Core": [
+
+ ]
+ },
+ "source_files": "OHHTTPStubs/Sources/Mocktail/*.{h,m}",
+ "public_header_files": "OHHTTPStubs/Sources/Mocktail/*.h"
+ },
+ {
+ "name": "OHPathHelpers",
+ "source_files": [
+ "OHHTTPStubs/Sources/OHPathHelpers/*.{h,m}",
+ "OHHTTPStubs/Sources/Compatibility.h"
+ ],
+ "public_header_files": [
+ "OHHTTPStubs/Sources/OHPathHelpers/*.h",
+ "OHHTTPStubs/Sources/Compatibility.h"
+ ]
+ },
+ {
+ "name": "Swift",
+ "platforms": {
+ "ios": "8.0"
+ },
+ "dependencies": {
+ "OHHTTPStubs/Core": [
+
+ ]
+ },
+ "source_files": "OHHTTPStubs/Sources/Swift/*.swift"
+ }
+ ]
}