[Add] DocumentReaderFullStage 7.5.10940
[CocoaPods.git] / Specs / 1 / c / 6 / JGSourceBase / 1.0.2 / JGSourceBase.podspec.json
blob99853aac60dde9051a3fda427a7a98b9efdeb9a5
2   "name": "JGSourceBase",
3   "version": "1.0.2",
4   "summary": "JGSourceCode 通用定义、功能模块。iOS项目常用功能,UIAlertController、Reachability、Loading-HUD、Toast-HUD便捷方法封装。",
5   "description": "JGSourceCode 通用定义、功能模块。iOS项目常用功能、UIAlertController、Reachability、HUD(Loading、Toast)便捷方法封装。\n\n功能包括:\n\n    Base - 通用定义、功能模块、iOS项目常用功能\n        1、常用宏定义、常用警告消除、SwizzledMethod的严谨实现\n        2、通用日志控制功能\n        3、字符串、URL常用方法\n        4、Block循环引用常用定义weak、strong快捷处理\n        5、NSDictionary便捷取指定类型值方法\n        6、NSJSONSerialization便捷方法封装\n        7、UIColor便捷方法封装\n    \n    AlertController - 系统UIAlertController便捷方法封装(原项目:JGActionSheetAlert/JGAlertController)\n        原项目:JGActionSheetAlert => https://github.com/dengni8023/JGActionSheetAlert.git\n        原项目:JGAlertController => https://github.com/dengni8023/JGAlertController.git\n        1、UIAlertController便捷方法封装\n    \n    Reachability - 网络状态监听(原项目:JGNetworkReachability)\n        原项目:JGNetworkReachability => https://github.com/dengni8023/JGNetworkReachability.git\n        1、网络状态获取、监听,支持多监听者\n        \n    HUD显示 - Loading-HUD、Toast-HUD显示\n        1、显示Loading HUD方法封装\n        2、显示Toast HUD方法封装",
6   "homepage": "https://github.com/dengni8023/JGSourceBase",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "source": {
12     "git": "https://github.com/dengni8023/JGSourceBase.git",
13     "tag": "1.0.2"
14   },
15   "authors": [
16     {
17       "等你8023": "945835664@qq.com"
18     },
19     {
20       "git": "https://github.com/dengni8023/JGSourceBase.git",
21       "tag": "1.0.2"
22     }
23   ],
24   "platforms": {
25     "ios": "9.0"
26   },
27   "source_files": "JGSourceBase/*.{h,m}",
28   "public_header_files": "JGSourceBase/*.h",
29   "default_subspecs": [
30     "Base",
31     "AlertController",
32     "Category"
33   ],
34   "requires_arc": true,
35   "subspecs": [
36     {
37       "name": "Base",
38       "source_files": [
39         "JGSourceBase/Base/*.{h,m}"
40       ],
41       "public_header_files": [
42         "JGSourceBase/Base/*.h"
43       ],
44       "frameworks": "Foundation",
45       "xcconfig": {
46         "OTHER_LDFLAGS": "-ObjC"
47       }
48     },
49     {
50       "name": "AlertController",
51       "source_files": [
52         "JGSourceBase/AlertController/*.{h,m}"
53       ],
54       "public_header_files": [
55         "JGSourceBase/AlertController/*.h"
56       ],
57       "frameworks": [
58         "Foundation",
59         "UIKit"
60       ],
61       "dependencies": {
62         "JGSourceBase/Base": [
64         ]
65       }
66     },
67     {
68       "name": "Category",
69       "source_files": [
70         "JGSourceBase/Category/*.{h,m}"
71       ],
72       "public_header_files": [
73         "JGSourceBase/Category/*.h"
74       ],
75       "frameworks": [
76         "Foundation",
77         "UIKit",
78         "CoreGraphics"
79       ]
80     },
81     {
82       "name": "Reachability",
83       "source_files": "JGSourceBase/Reachability/*.{h,m}",
84       "public_header_files": "JGSourceBase/Reachability/*.h",
85       "frameworks": [
86         "SystemConfiguration",
87         "CoreTelephony"
88       ],
89       "dependencies": {
90         "JGSourceBase/Base": [
92         ]
93       },
94       "xcconfig": {
95         "GCC_PREPROCESSOR_DEFINITIONS": "JGS_Reachability"
96       }
97     },
98     {
99       "name": "HUD",
100       "source_files": [
101         "JGSourceBase/HUD/*.{h,m}"
102       ],
103       "public_header_files": [
104         "JGSourceBase/HUD/*.h"
105       ],
106       "dependencies": {
107         "MBProgressHUD": [
108           "~> 1.1.0"
109         ],
110         "JGSourceBase/Category": [
112         ]
113       },
114       "xcconfig": {
115         "GCC_PREPROCESSOR_DEFINITIONS": "JGS_HUD"
116       },
117       "subspecs": [
118         {
119           "name": "LoadingHUD",
120           "source_files": [
121             "JGSourceBase/HUD/LoadingHUD/*.{h,m}"
122           ],
123           "public_header_files": [
124             "JGSourceBase/HUD/LoadingHUD/*.h"
125           ]
126         },
127         {
128           "name": "ToastHUD",
129           "source_files": [
130             "JGSourceBase/HUD/ToastHUD/*.{h,m}"
131           ],
132           "public_header_files": [
133             "JGSourceBase/HUD/ToastHUD/*.h"
134           ]
135         }
136       ]
137     }
138   ]