[Add] FaceCoreBasicNightly 6.2.803
[CocoaPods.git] / Specs / 2 / 1 / 3 / FoundationExtension / 1.2.3 / FoundationExtension.podspec.json
blobcf5ebf38e036587a79abbb9f38db57f2cbc8cf71
2   "name": "FoundationExtension",
3   "version": "1.2.3",
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.\nSee document on [Github] (http://youknowone.github.com/FoundationExtension)\n\nTry FoundationExtension for Foundation extensions.\nFor iOS, UIKitExtension is available too.",
6   "homepage": "https://github.com/youknowone/FoundationExtension",
7   "license": "2-clause BSD",
8   "authors": {
9     "Jeong YunWon": "jeong@youknowone.org"
10   },
11   "social_media_url": "http://twitter.com/youknowone_",
12   "source": {
13     "git": "https://github.com/youknowone/FoundationExtension.git",
14     "tag": "1.2.3"
15   },
16   "dependencies": {
17     "cdebug": [
18       "~> 1.0"
19     ]
20   },
21   "requires_arc": true,
22   "platforms": {
23     "osx": "10.9",
24     "ios": "7.0",
25     "tvos": "9.0",
26     "watchos": "2.0"
27   },
28   "subspecs": [
29     {
30       "name": "FoundationExtensionRC",
31       "source_files": "FoundationExtensionRC/*.{h,m}",
32       "public_header_files": "FoundationExtensionRC/*.h",
33       "header_dir": "FoundationExtensionRC",
34       "requires_arc": false
35     },
36     {
37       "name": "FoundationExtension",
38       "source_files": "FoundationExtension/*.{h,m}",
39       "public_header_files": "FoundationExtension/*.h",
40       "header_dir": "FoundationExtension",
41       "dependencies": {
42         "FoundationExtension/FoundationExtensionRC": [
44         ]
45       }
46     },
47     {
48       "name": "CocoaExtension",
49       "platforms": {
50         "osx": "10.9"
51       },
52       "source_files": "CocoaExtension/*.{h,m}",
53       "public_header_files": "CocoaExtension/*.h",
54       "header_dir": "CocoaExtension",
55       "frameworks": [
56         "Cocoa",
57         "QuartzCore"
58       ],
59       "dependencies": {
60         "FoundationExtension/FoundationExtension": [
62         ]
63       }
64     },
65     {
66       "name": "UIKitExtension",
67       "platforms": {
68         "ios": "7.0",
69         "tvos": "9.0"
70       },
71       "source_files": "UIKitExtension/*.{h,m}",
72       "public_header_files": "UIKitExtension/*.h",
73       "header_dir": "UIKitExtension",
74       "frameworks": [
75         "UIKit",
76         "QuartzCore"
77       ],
78       "dependencies": {
79         "FoundationExtension/FoundationExtension": [
81         ]
82       }
83     }
84   ]