-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathiOS_Category.podspec
More file actions
36 lines (18 loc) · 924 Bytes
/
Copy pathiOS_Category.podspec
File metadata and controls
36 lines (18 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Pod::Spec.new do |s|
s.name = "iOS_Category"
s.version = "0.0.1"
s.summary = "all kinds of categories for iOS develop"
s.description = <<-DESC
this project provide all kinds of categories for iOS developer
DESC
s.homepage = "https://github.com/yongqianvip/iOS_Category"
s.license = "MIT"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "yongqianvip" => "yongqianvip@163.com" }
s.platform = :ios
s.source = { :git => "https://github.com/yongqianvip/iOS_Category.git", :tag => "0.0.1" }
s.source_files = "Classes", "iOS_Category/Classes/**/*.{h,m}"
s.exclude_files = "Classes/Exclude"
s.public_header_files = "iOS_Category/Classes/UIKit/UI_Categories.h","iOS_Category/Classes/Foundation/Foundation_Category.h","iOS_Category/Classes/**/*.h"
s.requires_arc = true
end