[Add] THEOplayer-Connector-Comscore 5.0.1
[CocoaPods.git] / Specs / 2 / 1 / 3 / FoundationExtension / 1.3.0 / FoundationExtension.podspec.json
blobe3b08a853897f4f887a53934bc3d340b7343d2c1
2   "name": "FoundationExtension",
3   "version": "1.3.0",
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.3.0"
15   },
16   "dependencies": {
17     "cdebug": [
18       "~> 1.0"
19     ]
20   },
21   "requires_arc": true,
22   "platforms": {
23     "osx": "10.9",
24     "ios": "9.0",
25     "tvos": "9.0",
26     "watchos": "2.0"
27   },
28   "pod_target_xcconfig": {
29     "DEFINES_MODULE": "NO"
30   },
31   "subspecs": [
32     {
33       "name": "FoundationExtensionRC",
34       "source_files": "FoundationExtensionRC/*.{h,m}",
35       "public_header_files": "FoundationExtensionRC/*.h",
36       "header_dir": "FoundationExtensionRC",
37       "requires_arc": false
38     },
39     {
40       "name": "FoundationExtension",
41       "source_files": "FoundationExtension/*.{h,m}",
42       "public_header_files": "FoundationExtension/*.h",
43       "header_dir": "FoundationExtension",
44       "dependencies": {
45         "FoundationExtension/FoundationExtensionRC": [
47         ]
48       }
49     },
50     {
51       "name": "CocoaExtension",
52       "platforms": {
53         "osx": "10.9"
54       },
55       "source_files": "CocoaExtension/*.{h,m}",
56       "public_header_files": "CocoaExtension/*.h",
57       "header_dir": "CocoaExtension",
58       "frameworks": [
59         "Cocoa",
60         "QuartzCore"
61       ],
62       "dependencies": {
63         "FoundationExtension/FoundationExtension": [
65         ]
66       }
67     },
68     {
69       "name": "UIKitExtension",
70       "platforms": {
71         "ios": "9.0",
72         "tvos": "9.0"
73       },
74       "source_files": "UIKitExtension/*.{h,m}",
75       "public_header_files": "UIKitExtension/*.h",
76       "header_dir": "UIKitExtension",
77       "frameworks": [
78         "UIKit",
79         "QuartzCore"
80       ],
81       "dependencies": {
82         "FoundationExtension/FoundationExtension": [
84         ]
85       }
86     }
87   ]