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",
9 "Olivier Halligon": "olivier.halligon+ae@gmail.com"
12 "git": "https://github.com/AliSoftware/OHHTTPStubs.git",
25 "default_subspecs": "Default",
33 "OHHTTPStubs/NSURLSession": [
39 "OHHTTPStubs/OHPathHelpers": [
46 "source_files": "OHHTTPStubs/Sources/*.{h,m}",
47 "public_header_files": "OHHTTPStubs/Sources/*.h"
50 "name": "NSURLSession",
56 "source_files": "OHHTTPStubs/Sources/NSURLSession/*.{h,m}"
65 "source_files": "OHHTTPStubs/Sources/JSON/*.{h,m}",
66 "public_header_files": "OHHTTPStubs/Sources/JSON/*.h"
69 "name": "HTTPMessage",
75 "source_files": "OHHTTPStubs/Sources/HTTPMessage/*.{h,m}",
76 "public_header_files": "OHHTTPStubs/Sources/HTTPMessage/*.h"
85 "source_files": "OHHTTPStubs/Sources/Mocktail/*.{h,m}",
86 "public_header_files": "OHHTTPStubs/Sources/Mocktail/*.h"
89 "name": "OHPathHelpers",
91 "OHHTTPStubs/Sources/OHPathHelpers/*.{h,m}",
92 "OHHTTPStubs/Sources/Compatibility.h"
94 "public_header_files": [
95 "OHHTTPStubs/Sources/OHPathHelpers/*.h",
96 "OHHTTPStubs/Sources/Compatibility.h"
105 "OHHTTPStubs/Core": [
109 "source_files": "OHHTTPStubs/Sources/Swift/*.swift"