| { |
| "name": "RealmTypeSafeQuery", |
| "version": "0.6.1", |
| "summary": "A type-safe Realm query extensions using Swift 4 Smart KeyPaths", |
| "description": "RealmTypeSafeQuery provides type safety, code completion and avoidance of typos against `NSPredicate` queries.\n\nExamples:\n```swift\nrealm.objects(Person.self).filter(Person.name == \"Katsumi\")\nrealm.objects(Person.self).filter(Person.age > 20)\n\nrealm.objects(Person.self).filter(Person.name > 20) // Compile error\nrealm.objects(Person.self).filter(Dog.name == \"John\") // Compile error\n```", |
| "homepage": "https://github.com/kishikawakatsumi/RealmTypeSafeQuery", |
| "license": { |
| "type": "Apache 2.0", |
| "file": "LICENSE" |
| }, |
| "authors": { |
| "Kishikawa Katsumi": "kishikawakatsumi@mac.com" |
| }, |
| "social_media_url": "https://twitter.com/k_katsumi", |
| "requires_arc": true, |
| "source": { |
| "git": "https://github.com/kishikawakatsumi/RealmTypeSafeQuery.git", |
| "tag": "v0.6.1", |
| "submodules": true |
| }, |
| "source_files": "RealmTypeSafeQuery/*.{h,swift}", |
| "dependencies": { |
| "RealmSwift": [ |
| "~> 2.10" |
| ] |
| }, |
| "pod_target_xcconfig": { |
| "SWIFT_WHOLE_MODULE_OPTIMIZATION": "YES", |
| "APPLICATION_EXTENSION_API_ONLY": "YES" |
| }, |
| "platforms": { |
| "ios": "8.0", |
| "osx": "10.9", |
| "watchos": "2.0", |
| "tvos": "9.0" |
| }, |
| "pushed_with_swift_version": "4.0" |
| } |