├── .gitignore ├── Cartfile ├── Cartfile.private ├── Cartfile.resolved ├── CoreHTTP.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── CoreHTTP.xcscmblueprint └── xcshareddata │ └── xcschemes │ └── CoreHTTP (iOS).xcscheme ├── Library ├── ArgoDecoding.swift ├── ArgoDecodingUtility.swift ├── ArgoParsing.swift ├── Bundle+Additions.swift ├── CoreHTTP.h ├── HTTPAuthenticationType.swift ├── HTTPHost.swift ├── HTTPHostRegistry.swift ├── HTTPMethod.swift ├── HTTPRequest.swift ├── HTTPResource.swift ├── HTTPResourceRequestable.swift ├── HTTPResponse.swift ├── HTTPResponseError.swift ├── HTTPResult.swift ├── HTTPStatusCodes.swift ├── Info.plist ├── Int+Additions.swift ├── JSONSerialization.swift ├── Logging.swift ├── Support.swift └── Support │ ├── iOS │ ├── CoreHTTP-iOS.h │ └── Info.plist │ └── macOS │ ├── CoreHTTP-Mac.h │ └── Info.plist ├── README.md ├── Sample └── NASA Photo of the Day │ ├── NASA Photo of the Day.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── NASA Photo of the Day │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── NASAPhoto.swift │ ├── NASAPhotoOfTheDay.swift │ └── ViewController.swift └── Tests ├── CoreHTTPTests.swift └── Support └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Cartfile.private -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /CoreHTTP.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/CoreHTTP.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoreHTTP.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/CoreHTTP.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CoreHTTP.xcodeproj/project.xcworkspace/xcshareddata/CoreHTTP.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/CoreHTTP.xcodeproj/project.xcworkspace/xcshareddata/CoreHTTP.xcscmblueprint -------------------------------------------------------------------------------- /CoreHTTP.xcodeproj/xcshareddata/xcschemes/CoreHTTP (iOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/CoreHTTP.xcodeproj/xcshareddata/xcschemes/CoreHTTP (iOS).xcscheme -------------------------------------------------------------------------------- /Library/ArgoDecoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/ArgoDecoding.swift -------------------------------------------------------------------------------- /Library/ArgoDecodingUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/ArgoDecodingUtility.swift -------------------------------------------------------------------------------- /Library/ArgoParsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/ArgoParsing.swift -------------------------------------------------------------------------------- /Library/Bundle+Additions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/Bundle+Additions.swift -------------------------------------------------------------------------------- /Library/CoreHTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/CoreHTTP.h -------------------------------------------------------------------------------- /Library/HTTPAuthenticationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPAuthenticationType.swift -------------------------------------------------------------------------------- /Library/HTTPHost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPHost.swift -------------------------------------------------------------------------------- /Library/HTTPHostRegistry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPHostRegistry.swift -------------------------------------------------------------------------------- /Library/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPMethod.swift -------------------------------------------------------------------------------- /Library/HTTPRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPRequest.swift -------------------------------------------------------------------------------- /Library/HTTPResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPResource.swift -------------------------------------------------------------------------------- /Library/HTTPResourceRequestable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPResourceRequestable.swift -------------------------------------------------------------------------------- /Library/HTTPResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPResponse.swift -------------------------------------------------------------------------------- /Library/HTTPResponseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPResponseError.swift -------------------------------------------------------------------------------- /Library/HTTPResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPResult.swift -------------------------------------------------------------------------------- /Library/HTTPStatusCodes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/HTTPStatusCodes.swift -------------------------------------------------------------------------------- /Library/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/Info.plist -------------------------------------------------------------------------------- /Library/Int+Additions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/Int+Additions.swift -------------------------------------------------------------------------------- /Library/JSONSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/JSONSerialization.swift -------------------------------------------------------------------------------- /Library/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/Logging.swift -------------------------------------------------------------------------------- /Library/Support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/Support.swift -------------------------------------------------------------------------------- /Library/Support/iOS/CoreHTTP-iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/Support/iOS/CoreHTTP-iOS.h -------------------------------------------------------------------------------- /Library/Support/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/Support/iOS/Info.plist -------------------------------------------------------------------------------- /Library/Support/macOS/CoreHTTP-Mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/Support/macOS/CoreHTTP-Mac.h -------------------------------------------------------------------------------- /Library/Support/macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Library/Support/macOS/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CoreHTTP 2 | Swift based Light HTTP library 3 | -------------------------------------------------------------------------------- /Sample/NASA Photo of the Day/NASA Photo of the Day.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Sample/NASA Photo of the Day/NASA Photo of the Day.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample/NASA Photo of the Day/NASA Photo of the Day.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Sample/NASA Photo of the Day/NASA Photo of the Day.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sample/NASA Photo of the Day/NASA Photo of the Day/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Sample/NASA Photo of the Day/NASA Photo of the Day/AppDelegate.swift -------------------------------------------------------------------------------- /Sample/NASA Photo of the Day/NASA Photo of the Day/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Sample/NASA Photo of the Day/NASA Photo of the Day/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sample/NASA Photo of the Day/NASA Photo of the Day/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Sample/NASA Photo of the Day/NASA Photo of the Day/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Sample/NASA Photo of the Day/NASA Photo of the Day/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Sample/NASA Photo of the Day/NASA Photo of the Day/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Sample/NASA Photo of the Day/NASA Photo of the Day/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Sample/NASA Photo of the Day/NASA Photo of the Day/Info.plist -------------------------------------------------------------------------------- /Sample/NASA Photo of the Day/NASA Photo of the Day/NASAPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Sample/NASA Photo of the Day/NASA Photo of the Day/NASAPhoto.swift -------------------------------------------------------------------------------- /Sample/NASA Photo of the Day/NASA Photo of the Day/NASAPhotoOfTheDay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Sample/NASA Photo of the Day/NASA Photo of the Day/NASAPhotoOfTheDay.swift -------------------------------------------------------------------------------- /Sample/NASA Photo of the Day/NASA Photo of the Day/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Sample/NASA Photo of the Day/NASA Photo of the Day/ViewController.swift -------------------------------------------------------------------------------- /Tests/CoreHTTPTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Tests/CoreHTTPTests.swift -------------------------------------------------------------------------------- /Tests/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casademora/CoreHTTP/HEAD/Tests/Support/Info.plist --------------------------------------------------------------------------------