├── .gitignore ├── .travis.yml ├── Framework ├── Info.plist └── module.modulemap ├── README.md ├── Tests ├── Info.plist ├── curl_tests.m └── curl_tests.swift └── curl.xcodeproj ├── project.pbxproj └── xcshareddata └── xcschemes └── curl.xcscheme /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ian-mcdowell/libcurl-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ian-mcdowell/libcurl-ios/HEAD/.travis.yml -------------------------------------------------------------------------------- /Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ian-mcdowell/libcurl-ios/HEAD/Framework/Info.plist -------------------------------------------------------------------------------- /Framework/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ian-mcdowell/libcurl-ios/HEAD/Framework/module.modulemap -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ian-mcdowell/libcurl-ios/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ian-mcdowell/libcurl-ios/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/curl_tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ian-mcdowell/libcurl-ios/HEAD/Tests/curl_tests.m -------------------------------------------------------------------------------- /Tests/curl_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ian-mcdowell/libcurl-ios/HEAD/Tests/curl_tests.swift -------------------------------------------------------------------------------- /curl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ian-mcdowell/libcurl-ios/HEAD/curl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /curl.xcodeproj/xcshareddata/xcschemes/curl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ian-mcdowell/libcurl-ios/HEAD/curl.xcodeproj/xcshareddata/xcschemes/curl.xcscheme --------------------------------------------------------------------------------