[Add] YLProgressHUD 0.0.2
[CocoaPods.git] / Specs / 1 / 9 / 7 / KeyPathTesting / 0.1.4 / KeyPathTesting.podspec.json
blobf89e62e62c1f051ddfe4b98f263f591c80907064
2   "name": "KeyPathTesting",
3   "version": "0.1.4",
4   "summary": "KeyPathTesting is a framework that leverages Result Builders to implement a new syntax that allows developers to write KeyPath-based unit tests",
5   "description": "KeyPathTesting is a Swift framework that leverages Result Builders to implement a new syntax that allows developers to write KeyPath-based unit tests.\n\nHere's an example of how it can be used:\n\nclass MyTests: XCTestCase {\n    func test() {\n        let myData = [1, 2, 3, 4]\n        \n        assert(on: myData) {\n            .isEmpty == false\n            .count > 2\n            .first == 1\n            .last != 1\n        }\n    }\n}",
6   "homepage": "https://github.com/vincent-pradeilles/KeyPathTesting",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Vincent Pradeilles": "vin.pradeilles+keypathtesting@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/vincent-pradeilles/KeyPathTesting.git",
16     "tag": "0.1.4"
17   },
18   "swift_versions": "5.4",
19   "platforms": {
20     "ios": "9.0"
21   },
22   "frameworks": "XCTest",
23   "source_files": "KeyPathTesting/KeyPathTesting/**/*.swift",
24   "swift_version": "5.4"