From 01b0b0bf0b5454e8c6e5e41721e1717d886a7a92 Mon Sep 17 00:00:00 2001 From: Jason Wray Date: Wed, 24 Aug 2016 23:22:17 -0400 Subject: [ios] Move OHHTTPStubs to Git submodule and update to 5.2.0 --- platform/ios/uitest/OHHTTPStubs | 1 + .../Pods/Local Podspecs/OHHTTPStubs.podspec.json | 112 --------------------- 2 files changed, 1 insertion(+), 112 deletions(-) create mode 160000 platform/ios/uitest/OHHTTPStubs delete mode 100644 platform/ios/uitest/OHHTTPStubs/Examples/Swift/Pods/Local Podspecs/OHHTTPStubs.podspec.json (limited to 'platform/ios/uitest/OHHTTPStubs/Examples/Swift/Pods/Local Podspecs/OHHTTPStubs.podspec.json') diff --git a/platform/ios/uitest/OHHTTPStubs b/platform/ios/uitest/OHHTTPStubs new file mode 160000 index 0000000000..deed01a159 --- /dev/null +++ b/platform/ios/uitest/OHHTTPStubs @@ -0,0 +1 @@ +Subproject commit deed01a1592210a4c37f3f5c5f2b32fe0e41c605 diff --git a/platform/ios/uitest/OHHTTPStubs/Examples/Swift/Pods/Local Podspecs/OHHTTPStubs.podspec.json b/platform/ios/uitest/OHHTTPStubs/Examples/Swift/Pods/Local Podspecs/OHHTTPStubs.podspec.json deleted file mode 100644 index a1bed26164..0000000000 --- a/platform/ios/uitest/OHHTTPStubs/Examples/Swift/Pods/Local Podspecs/OHHTTPStubs.podspec.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "name": "OHHTTPStubs", - "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", - "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": "4.3.0" - }, - "frameworks": [ - "Foundation", - "CFNetwork" - ], - "requires_arc": true, - "platforms": { - "ios": "5.0", - "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" - } - ] -} -- cgit v1.2.1