[Add] AlibabacloudIQS20241111 1.2.0
[CocoaPods.git] / Specs / 8 / e / d / ObjCMongoDB / 0.10.1 / ObjCMongoDB.podspec.json
blob0ea69cfe0ee8c546d0586b2b92f99b444dc2f011
2   "name": "ObjCMongoDB",
3   "version": "0.10.1",
4   "summary": "Mac OS and iOS library for MongoDB and BSON.",
5   "description": "                   Mac OS and iOS library for MongoDB and BSON.\n                    - Simple BSON encoding and decoding, using dictionaries.\n                    - Built-in support for arrays, dictionaries, embedded objects, strings, numbers, dates, object IDs, and the miscellaneous MongoDB types.\n                    - More complex encoding and decoding based on NSCoder's keyed coding scheme. A robust delegate interface lets you implement encoding and decoding entirely outside the model classes if necessary.\n                    - Automatically encodes and decodes Core Data entities. Using the coder's delegate interface you can customize the default behavior, or simply implement alternate behavior it in the entity class.\n                    - Aims to feel Cocoa-like, not Mongo-like. For example, method names in MongoKeyedPredicate and MongoUpdateRequest are natural in Cocoa, though they don't conform to the underlying Mongo keywords.\n",
6   "homepage": "https://github.com/paulmelnikow/ObjCMongoDB",
7   "license": "Apache",
8   "authors": {
9     "Paul Melnikow": "github@paulmelnikow.com"
10   },
11   "source": {
12     "git": "https://github.com/paulmelnikow/ObjCMongoDB.git",
13     "tag": "v0.10.1"
14   },
15   "platforms": {
16     "ios": "5.0",
17     "osx": "10.6"
18   },
19   "requires_arc": false,
20   "dependencies": {
21     "mongo-c-driver": [
22       "~> 0.8.1"
23     ]
24   },
25   "subspecs": [
26     {
27       "name": "BSON",
28       "source_files": "BSON",
29       "private_header_files": [
30         "BSON/BSON_Helper.h",
31         "BSON/BSON_PrivateInterfaces.h"
32       ]
33     },
34     {
35       "name": "Mongo",
36       "source_files": "Mongo",
37       "private_header_files": [
38         "Mongo/Mongo_Helper.h",
39         "Mongo/Mongo_PrivateInterfaces.h"
40       ],
41       "dependencies": {
42         "ObjCMongoDB/BSON": [
43           "~> 0.10.1"
44         ],
45         "ObjCMongoDB/OrderedDictionary": [
46           "~> 0.10.1"
47         ]
48       }
49     },
50     {
51       "name": "OrderedDictionary",
52       "source_files": "OrderedDictionary",
53       "license": {
54         "type": "MIT",
55         "file": "OrderedDictionary/OrderedDictionary.h"
56       }
57     }
58   ]