├── .gitattributes ├── .gitignore ├── Cartfile.private ├── Cartfile.resolved ├── Images └── Header.png ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── README.md ├── ResponseDetective.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace │ └── contents.xcworkspacedata ├── ResponseDetective.podspec ├── ResponseDetective.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── ResponseDetective-iOS.xcscheme │ ├── ResponseDetective-macOS.xcscheme │ └── ResponseDetective-tvOS.xcscheme ├── ResponseDetective ├── Configuration │ ├── Common-Base.xcconfig │ ├── Common-Debug.xcconfig │ ├── Common-Release.xcconfig │ ├── Framework-Base.xcconfig │ ├── Framework-iOS.xcconfig │ ├── Framework-macOS.xcconfig │ ├── Framework-tvOS.xcconfig │ ├── Tests-Base.xcconfig │ ├── Tests-iOS.xcconfig │ ├── Tests-macOS.xcconfig │ ├── Tests-tvOS.xcconfig │ └── Vendor │ │ ├── Common │ │ ├── Carthage.xcconfig │ │ ├── Common.xcconfig │ │ └── Variables.xcconfig │ │ ├── Configurations │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ │ ├── Platforms │ │ ├── iOS.xcconfig │ │ ├── macOS.xcconfig │ │ ├── tvOS.xcconfig │ │ └── watchOS.xcconfig │ │ └── Targets │ │ ├── Application.xcconfig │ │ ├── Extension.xcconfig │ │ ├── Framework.xcconfig │ │ └── Tests.xcconfig ├── Resources │ ├── Framework-Info.plist │ ├── Framework.modulemap │ └── Tests-Info.plist ├── Sources │ ├── BufferOutputFacility.swift │ ├── ConsoleOutputFacility.swift │ ├── Dictionary.swift │ ├── ErrorRepresentation.swift │ ├── ImageBodyDeserializer.swift │ ├── JSONBodyDeserializer.swift │ ├── OutputFacility.swift │ ├── PlaintextBodyDeserializer.swift │ ├── RDTBodyDeserializer.h │ ├── RDTHTMLBodyDeserializer.h │ ├── RDTHTMLBodyDeserializer.m │ ├── RDTXMLBodyDeserializer.h │ ├── RDTXMLBodyDeserializer.m │ ├── RequestRepresentation.swift │ ├── ResponseDetective.h │ ├── ResponseDetective.swift │ ├── ResponseRepresentation.swift │ ├── URLEncodedBodyDeserializer.swift │ └── URLProtocol.swift ├── Tests │ ├── Additions │ │ └── TestBodyDeserializer.swift │ └── Specs │ │ ├── BufferOutputFacilitySpec.swift │ │ ├── ConsoleOutputFacilitySpec.swift │ │ ├── ErrorRepresentationSpec.swift │ │ ├── HTMLBodyDeserializerSpec.swift │ │ ├── ImageBodyDeserializerSpec.swift │ │ ├── JSONBodyDeserializerSpec.swift │ │ ├── PlaintextBodyDeserializerSpec.swift │ │ ├── RequestRepresentationSpec.swift │ │ ├── ResponseDetectiveSpec.swift │ │ ├── ResponseRepresentationSpec.swift │ │ ├── URLEncodedBodyDeserializerSpec.swift │ │ └── XMLBodyDeserializerSpec.swift └── include │ ├── RDTBodyDeserializer.h │ ├── RDTHTMLBodyDeserializer.h │ ├── RDTXMLBodyDeserializer.h │ └── ResponseDetective.h ├── bitrise.yml └── carthage.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/Cartfile.private -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Images/Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/Images/Header.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/README.md -------------------------------------------------------------------------------- /ResponseDetective.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective.playground/Contents.swift -------------------------------------------------------------------------------- /ResponseDetective.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective.playground/contents.xcplayground -------------------------------------------------------------------------------- /ResponseDetective.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ResponseDetective.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective.podspec -------------------------------------------------------------------------------- /ResponseDetective.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ResponseDetective.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ResponseDetective.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ResponseDetective.xcodeproj/xcshareddata/xcschemes/ResponseDetective-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective.xcodeproj/xcshareddata/xcschemes/ResponseDetective-iOS.xcscheme -------------------------------------------------------------------------------- /ResponseDetective.xcodeproj/xcshareddata/xcschemes/ResponseDetective-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective.xcodeproj/xcshareddata/xcschemes/ResponseDetective-macOS.xcscheme -------------------------------------------------------------------------------- /ResponseDetective.xcodeproj/xcshareddata/xcschemes/ResponseDetective-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective.xcodeproj/xcshareddata/xcschemes/ResponseDetective-tvOS.xcscheme -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Common-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Common-Base.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Common-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Common-Debug.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Common-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Common-Release.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Framework-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Framework-Base.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Framework-iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Framework-iOS.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Framework-macOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Framework-macOS.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Framework-tvOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Framework-tvOS.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Tests-Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Tests-Base.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Tests-iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Tests-iOS.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Tests-macOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Tests-macOS.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Tests-tvOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Tests-tvOS.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Common/Carthage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Common/Carthage.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Common/Common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Common/Common.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Common/Variables.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Common/Variables.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Configurations/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Configurations/Debug.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Configurations/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Configurations/Release.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Platforms/iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Platforms/iOS.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Platforms/macOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Platforms/macOS.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Platforms/tvOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Platforms/tvOS.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Platforms/watchOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Platforms/watchOS.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Targets/Application.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Targets/Application.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Targets/Extension.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Targets/Extension.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Targets/Framework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Targets/Framework.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Configuration/Vendor/Targets/Tests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Configuration/Vendor/Targets/Tests.xcconfig -------------------------------------------------------------------------------- /ResponseDetective/Resources/Framework-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Resources/Framework-Info.plist -------------------------------------------------------------------------------- /ResponseDetective/Resources/Framework.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Resources/Framework.modulemap -------------------------------------------------------------------------------- /ResponseDetective/Resources/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Resources/Tests-Info.plist -------------------------------------------------------------------------------- /ResponseDetective/Sources/BufferOutputFacility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/BufferOutputFacility.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/ConsoleOutputFacility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/ConsoleOutputFacility.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/Dictionary.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/ErrorRepresentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/ErrorRepresentation.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/ImageBodyDeserializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/ImageBodyDeserializer.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/JSONBodyDeserializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/JSONBodyDeserializer.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/OutputFacility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/OutputFacility.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/PlaintextBodyDeserializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/PlaintextBodyDeserializer.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/RDTBodyDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/RDTBodyDeserializer.h -------------------------------------------------------------------------------- /ResponseDetective/Sources/RDTHTMLBodyDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/RDTHTMLBodyDeserializer.h -------------------------------------------------------------------------------- /ResponseDetective/Sources/RDTHTMLBodyDeserializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/RDTHTMLBodyDeserializer.m -------------------------------------------------------------------------------- /ResponseDetective/Sources/RDTXMLBodyDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/RDTXMLBodyDeserializer.h -------------------------------------------------------------------------------- /ResponseDetective/Sources/RDTXMLBodyDeserializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/RDTXMLBodyDeserializer.m -------------------------------------------------------------------------------- /ResponseDetective/Sources/RequestRepresentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/RequestRepresentation.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/ResponseDetective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/ResponseDetective.h -------------------------------------------------------------------------------- /ResponseDetective/Sources/ResponseDetective.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/ResponseDetective.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/ResponseRepresentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/ResponseRepresentation.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/URLEncodedBodyDeserializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/URLEncodedBodyDeserializer.swift -------------------------------------------------------------------------------- /ResponseDetective/Sources/URLProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Sources/URLProtocol.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Additions/TestBodyDeserializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Additions/TestBodyDeserializer.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/BufferOutputFacilitySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/BufferOutputFacilitySpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/ConsoleOutputFacilitySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/ConsoleOutputFacilitySpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/ErrorRepresentationSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/ErrorRepresentationSpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/HTMLBodyDeserializerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/HTMLBodyDeserializerSpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/ImageBodyDeserializerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/ImageBodyDeserializerSpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/JSONBodyDeserializerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/JSONBodyDeserializerSpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/PlaintextBodyDeserializerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/PlaintextBodyDeserializerSpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/RequestRepresentationSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/RequestRepresentationSpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/ResponseDetectiveSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/ResponseDetectiveSpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/ResponseRepresentationSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/ResponseRepresentationSpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/URLEncodedBodyDeserializerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/URLEncodedBodyDeserializerSpec.swift -------------------------------------------------------------------------------- /ResponseDetective/Tests/Specs/XMLBodyDeserializerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/ResponseDetective/Tests/Specs/XMLBodyDeserializerSpec.swift -------------------------------------------------------------------------------- /ResponseDetective/include/RDTBodyDeserializer.h: -------------------------------------------------------------------------------- 1 | ../Sources/RDTBodyDeserializer.h -------------------------------------------------------------------------------- /ResponseDetective/include/RDTHTMLBodyDeserializer.h: -------------------------------------------------------------------------------- 1 | ../Sources/RDTHTMLBodyDeserializer.h -------------------------------------------------------------------------------- /ResponseDetective/include/RDTXMLBodyDeserializer.h: -------------------------------------------------------------------------------- 1 | ../Sources/RDTXMLBodyDeserializer.h -------------------------------------------------------------------------------- /ResponseDetective/include/ResponseDetective.h: -------------------------------------------------------------------------------- 1 | ../Sources/ResponseDetective.h -------------------------------------------------------------------------------- /bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/bitrise.yml -------------------------------------------------------------------------------- /carthage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netguru/ResponseDetective/HEAD/carthage.sh --------------------------------------------------------------------------------