[Add] FaceCoreBasicNightly 6.2.803
[CocoaPods.git] / Specs / 2 / 1 / 3 / FoundationExtension / 0.33 / FoundationExtension.podspec.json
blob50222cdb1cf167b8cf474c3f8f46f3ba2747db35
2   "name": "FoundationExtension",
3   "version": "0.33",
4   "summary": "Foundation/UIKit extension kit. It is category based and looks familiar to Foundation/UIKit. It includes many common snippets as shortcut.",
5   "description": "                    This library includes small Foundation/Cocoa/UIKit extensions. This library does not includes high-level data structure, algorithm or frameworks, but collection of code snippets.\n                    * Many common snippets in a method call.\n                    * Looks like native foundation methods - It follows Apple Coding Guideline and Foundation naming convention.\n                    See document on [Github] (http://youknowone.github.com/FoundationExtension)\n\n                    Try FoundationExtension for Foundation extensions.\n                    For iOS, UIKitExtension is available too.\n",
6   "homepage": "https://github.com/youknowone/FoundationExtension",
7   "license": "2-clause BSD",
8   "authors": {
9     "Jeong YunWon": "jeong@youknowone.org"
10   },
11   "source": {
12     "git": "https://github.com/youknowone/FoundationExtension.git",
13     "tag": "0.33"
14   },
15   "dependencies": {
16     "cdebug": [
17       "~> 0.1"
18     ]
19   },
20   "requires_arc": false,
21   "subspecs": [
22     {
23       "name": "FoundationExtension",
24       "source_files": "FoundationExtension",
25       "public_header_files": "FoundationExtension/*.h",
26       "prefix_header_contents": "\n#include <cdebug/debug.h>\n#include <FoundationExtension/FoundationExtension.h>\n    "
27     },
28     {
29       "name": "CocoaExtension",
30       "platforms": {
31         "osx": null
32       },
33       "source_files": "CocoaExtension",
34       "public_header_files": "CocoaExtension/*.h",
35       "header_dir": "CocoaExtension",
36       "frameworks": "Cocoa",
37       "prefix_header_contents": "\n#include <cdebug/debug.h>\n#include <CocoaExtension/CocoaExtension.h>\n    ",
38       "dependencies": {
39         "FoundationExtension/FoundationExtension": [
41         ]
42       }
43     },
44     {
45       "name": "UIKitExtension",
46       "platforms": {
47         "ios": null
48       },
49       "source_files": "UIKitExtension",
50       "public_header_files": "UIKitExtension/*.h",
51       "header_dir": "UIKitExtension",
52       "prefix_header_contents": "\n#include <cdebug/debug.h>\n#include <UIKitExtension/UIKitExtension.h>\n    ",
53       "dependencies": {
54         "FoundationExtension/FoundationExtension": [
56         ]
57       }
58     }
59   ]