[Add] FCVideo 3.2.21
[CocoaPods.git] / Specs / b / a / 7 / Realm / 0.89.2 / Realm.podspec.json
blob62618f0b312b6f56b05a588f1e1ad9eefc2d8601
2   "name": "Realm",
3   "version": "0.89.2",
4   "summary": "Realm is a modern data framework & database for iOS & OSX.",
5   "description": "                              Realm is a modern data framework & database for iOS & OSX. You can use it purely in memory — or persist to disk with extraordinary performance.\n\n                              Realm’s data structures look like NSObjects and NSArrays, but provide additional features such as: querying, relationships & graphs, thread safety, and more.\n\n                              Realm is not built on SQLite. Instead, a custom C++ core is used to provide memory-efficient access to your data by using Realm objects, which usually consume less RAM than native objects. The core also provides an optional persistence layer that can automatically save and retrieve your objects from disk.\n\n                              Realm offers extraordinary performance compared to SQLite and other persistence solutions. It has been in development since 2011 and powers an app with over 1 million\n                              daily active users at a major mobile game company.\n",
6   "homepage": "http://realm.io",
7   "source": {
8     "git": "https://github.com/Realm/realm-cocoa.git",
9     "tag": "v0.89.2"
10   },
11   "authors": {
12     "Realm": "help@realm.io"
13   },
14   "libraries": "c++",
15   "requires_arc": true,
16   "social_media_url": "https://twitter.com/realm",
17   "documentation_url": "http://realm.io/docs/cocoa/0.89.2",
18   "license": {
19     "type": "Apache 2.0",
20     "file": "LICENSE"
21   },
22   "compiler_flags": "-DTIGHTDB_HAVE_CONFIG -DREALM_SWIFT=0 -DREALM_VERSION='@\"0.89.2\"'",
23   "prepare_command": "sh build.sh cocoapods-setup",
24   "private_header_files": [
25     "include-ios/**/*.hpp",
26     "include-osx/**/*.hpp",
27     "**/*_Private.h"
28   ],
29   "source_files": [
30     "Realm/*.{m,mm}",
31     "core/**/*.{h,hpp}"
32   ],
33   "xcconfig": {
34     "CLANG_CXX_LANGUAGE_STANDARD": "compiler-default",
35     "OTHER_CPLUSPLUSFLAGS": "-std=c++1y $(inherited)"
36   },
37   "preserve_paths": [
38     "build.sh"
39   ],
40   "platforms": {
41     "ios": "6.0",
42     "osx": "10.8"
43   },
44   "ios": {
45     "vendored_libraries": "core/libtightdb-ios.a",
46     "header_mappings_dir": "include-ios",
47     "source_files": "include-ios/**/*.hpp"
48   },
49   "osx": {
50     "vendored_libraries": "core/libtightdb.a",
51     "header_mappings_dir": "include-osx",
52     "source_files": "include-osx/**/*.hpp"
53   },
54   "subspecs": [
55     {
56       "name": "Headers",
57       "ios": {
58         "source_files": "include-ios/**/*.h"
59       },
60       "osx": {
61         "source_files": "include-osx/**/*.h"
62       }
63     }
64   ]