├── .github ├── matrix.json ├── renovate.json └── workflows │ ├── danger.yml │ └── test.yml ├── .gitignore ├── .swiftlint.yml ├── Dangerfile.swift ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── Sources └── MultipartFormDataParser │ ├── Error.swift │ ├── Extensions │ └── Data+Util.swift │ ├── MultipartFormData+Sequence.swift │ ├── MultipartFormData.swift │ └── MultipartFormDataParser.swift ├── TestPlan.xctestplan ├── Tests └── MultipartFormDataParserTests │ ├── MultipartFormDataParserTests.swift │ ├── _Extension │ ├── NSImage+Util.swift │ ├── URLSession+Linux.swift │ └── XCTest+Activity.swift │ ├── _TestFunctions │ ├── TestFunction_APIKit.swift │ ├── TestFunction_Alamofire.swift │ └── TestFunction_URLSession.swift │ └── _Util │ ├── Constants.swift │ ├── LinuxImage.swift │ ├── StubURLProtocol.swift │ ├── TestEntity.swift │ ├── TestResource.swift │ └── TestStub.swift └── scripts └── release.sh /.github/matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/.github/matrix.json -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/danger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/.github/workflows/danger.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Dangerfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Dangerfile.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/README.md -------------------------------------------------------------------------------- /Sources/MultipartFormDataParser/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Sources/MultipartFormDataParser/Error.swift -------------------------------------------------------------------------------- /Sources/MultipartFormDataParser/Extensions/Data+Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Sources/MultipartFormDataParser/Extensions/Data+Util.swift -------------------------------------------------------------------------------- /Sources/MultipartFormDataParser/MultipartFormData+Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Sources/MultipartFormDataParser/MultipartFormData+Sequence.swift -------------------------------------------------------------------------------- /Sources/MultipartFormDataParser/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Sources/MultipartFormDataParser/MultipartFormData.swift -------------------------------------------------------------------------------- /Sources/MultipartFormDataParser/MultipartFormDataParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Sources/MultipartFormDataParser/MultipartFormDataParser.swift -------------------------------------------------------------------------------- /TestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/TestPlan.xctestplan -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/MultipartFormDataParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/MultipartFormDataParserTests.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_Extension/NSImage+Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_Extension/NSImage+Util.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_Extension/URLSession+Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_Extension/URLSession+Linux.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_Extension/XCTest+Activity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_Extension/XCTest+Activity.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_TestFunctions/TestFunction_APIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_TestFunctions/TestFunction_APIKit.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_TestFunctions/TestFunction_Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_TestFunctions/TestFunction_Alamofire.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_TestFunctions/TestFunction_URLSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_TestFunctions/TestFunction_URLSession.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_Util/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_Util/Constants.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_Util/LinuxImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_Util/LinuxImage.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_Util/StubURLProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_Util/StubURLProtocol.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_Util/TestEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_Util/TestEntity.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_Util/TestResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_Util/TestResource.swift -------------------------------------------------------------------------------- /Tests/MultipartFormDataParserTests/_Util/TestStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/Tests/MultipartFormDataParserTests/_Util/TestStub.swift -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/417-72KI/MultipartFormDataParser/HEAD/scripts/release.sh --------------------------------------------------------------------------------