[Add] DocumentReaderOCRRFIDStage 7.5.11035
[CocoaPods.git] / Specs / d / 3 / 7 / KeyPathKit / 1.6.0 / KeyPathKit.podspec.json
blob3acb90de94cf06c44bc4b57fc28301397694a4f4
2   "name": "KeyPathKit",
3   "version": "1.6.0",
4   "summary": "KeyPathKit leverages Swift 4 KeyPath type in order to implement a SQL-like data manipulation API",
5   "description": "Swift 4 has introduced a new type called KeyPath, with allows to access the properties of an object with a very nice syntax. For instance:\n\nlet string = \"Foo\"\nlet keyPathForCount = String.count\n\nlet count = string[keyPath: keyPathForCount] // count == 3\nThe great part is that the syntax can be very concise, because it supports type inference and property chaining.\n\nConsequently, I thought it would be nice to leverage this new concept in order to build an API that allows to perform data manipulation in a very declarative fashion.\n\nSQL is a great language for such manipulations, so I took inspiration from it and implemented most of its standard operators in Swift 4 using KeyPath.\n\nBut what really stands KeyPathKit appart from the competition is its clever syntax that allows to express queries in a very seamless fashion. For instance :\n\ncontacts.filter(where: .lastName == \"Webb\" && .age < 40)",
6   "homepage": "https://github.com/vincent-pradeilles/KeyPathKit",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Vincent Pradeilles": "vin.pradeilles+keypathkit@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/vincent-pradeilles/KeyPathKit.git",
16     "tag": "1.6.0"
17   },
18   "platforms": {
19     "ios": "9.0",
20     "tvos": "10.0",
21     "osx": "10.12",
22     "watchos": "3.0"
23   },
24   "frameworks": "Foundation",
25   "source_files": "Sources/**/*.swift"