[Add] RegulaCommonStage 7.5.928
[CocoaPods.git] / Specs / 2 / 1 / 3 / FoundationExtension / 1.2.2 / FoundationExtension.podspec.json
blob8669d03dffacec06f4d0d266efaab35b7ceb917b
2   "name": "FoundationExtension",
3   "version": "1.2.2",
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   "source": {
12     "git": "https://github.com/youknowone/FoundationExtension.git",
13     "tag": "1.2.2"
14   },
15   "dependencies": {
16     "cdebug": [
17       "~> 1.0"
18     ]
19   },
20   "requires_arc": true,
21   "platforms": {
22     "osx": "10.9",
23     "ios": "7.0"
24   },
25   "subspecs": [
26     {
27       "name": "FoundationExtensionRC",
28       "source_files": "FoundationExtensionRC/*.{h,m}",
29       "public_header_files": "FoundationExtensionRC/*.h",
30       "header_dir": "FoundationExtensionRC",
31       "requires_arc": false
32     },
33     {
34       "name": "FoundationExtension",
35       "source_files": "FoundationExtension/*.{h,m}",
36       "public_header_files": "FoundationExtension/*.h",
37       "header_dir": "FoundationExtension",
38       "dependencies": {
39         "FoundationExtension/FoundationExtensionRC": [
41         ]
42       }
43     },
44     {
45       "name": "CocoaExtension",
46       "platforms": {
47         "osx": "10.9"
48       },
49       "source_files": "CocoaExtension/*.{h,m}",
50       "public_header_files": "CocoaExtension/*.h",
51       "header_dir": "CocoaExtension",
52       "frameworks": [
53         "Cocoa",
54         "QuartzCore"
55       ],
56       "dependencies": {
57         "FoundationExtension/FoundationExtension": [
59         ]
60       }
61     },
62     {
63       "name": "UIKitExtension",
64       "platforms": {
65         "ios": "7.0"
66       },
67       "source_files": "UIKitExtension/*.{h,m}",
68       "public_header_files": "UIKitExtension/*.h",
69       "header_dir": "UIKitExtension",
70       "frameworks": [
71         "UIKit",
72         "QuartzCore"
73       ],
74       "dependencies": {
75         "FoundationExtension/FoundationExtension": [
77         ]
78       }
79     }
80   ]