[Add] DocumentReaderFullRFIDStage 7.5.10860
[CocoaPods.git] / Specs / 8 / e / d / ObjCMongoDB / 0.11.0 / ObjCMongoDB.podspec.json
blobdbf95ca237c223b3bc2d6c948789f521be4337ac
2   "name": "ObjCMongoDB",
3   "version": "0.11.0",
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.11.0"
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       "dependencies": {
34         "ObjCMongoDB/OrderedDictionary": [
35           "~> 0.11.0"
36         ]
37       }
38     },
39     {
40       "name": "Mongo",
41       "source_files": "Mongo",
42       "private_header_files": [
43         "Mongo/Mongo_Helper.h",
44         "Mongo/Mongo_PrivateInterfaces.h"
45       ],
46       "dependencies": {
47         "ObjCMongoDB/BSON": [
48           "~> 0.11.0"
49         ],
50         "ObjCMongoDB/OrderedDictionary": [
51           "~> 0.11.0"
52         ]
53       }
54     },
55     {
56       "name": "OrderedDictionary",
57       "source_files": "OrderedDictionary",
58       "license": {
59         "type": "MIT",
60         "file": "OrderedDictionary/OrderedDictionary.h"
61       }
62     }
63   ]