[Add] MappIntelligence 5.0.13
[CocoaPods.git] / Specs / 2 / 5 / a / VOKEmbeddedTemplateTools / 0.1.0 / VOKEmbeddedTemplateTools.podspec.json
blobaa51f1a1af2243cf5ab498be4397a3729e0c8e98
2   "name": "VOKEmbeddedTemplateTools",
3   "version": "0.1.0",
4   "summary": "Handle a zip file of mustache templates embedded into the Mach-O executable.",
5   "description": "                            Includes:\n                            - a category on NSData for getting data embedded into the Mach-O executable (embedding done via \"Other Linker Flags\" `-sectcreate __TEXT __your_name \"some_file_name\"`)\n                            - a category on [ZipZap](https://github.com/pixelglow/zipzap)'s `ZZArchive` to load an archive from data embedded into the Mach-O executable\n                            - a [GRMustache](https://github.com/groue/GRMustache) `GRMustacheTemplateRepository` subclass that loads its templates from a `ZZArchive`\n\n                            ***NOTE:*** The Mach-O executable embedded data reading doesn't seem to compile when pods are set to use frameworks.\n",
6   "homepage": "https://github.com/vokal/VOKEmbeddedTemplateTools",
7   "license": "MIT",
8   "authors": {
9     "Isaac Greenspan": "isaac.greenspan@vokal.io"
10   },
11   "source": {
12     "git": "https://github.com/vokal/VOKEmbeddedTemplateTools.git",
13     "tag": "0.1.0"
14   },
15   "platforms": {
16     "osx": "10.9"
17   },
18   "requires_arc": true,
19   "subspecs": [
20     {
21       "name": "NSData+VOKMachOEmbedded",
22       "source_files": "Pod/NSData+VOKMachOEmbedded.{h,m}"
23     },
24     {
25       "name": "ZZArchive+VOKMachOEmbedded",
26       "source_files": "Pod/ZZArchive+VOKMachOEmbedded.{h,m}",
27       "dependencies": {
28         "VOKEmbeddedTemplateTools/NSData+VOKMachOEmbedded": [
30         ],
31         "zipzap": [
32           "~> 8.0.3"
33         ]
34       }
35     },
36     {
37       "name": "VOKZZArchiveTemplateRepository",
38       "source_files": "Pod/VOKZZArchiveTemplateRepository.{h,m}",
39       "dependencies": {
40         "zipzap": [
41           "~> 8.0.3"
42         ],
43         "GRMustache": [
44           "~> 7.3.0"
45         ]
46       }
47     }
48   ]