-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMSBaseFoundation.podspec
36 lines (34 loc) · 1.19 KB
/
CMSBaseFoundation.podspec
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
#
# Be sure to run `pod spec lint CMSBaseFoundation.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "CMSBaseFoundation"
spec.version = "0.0.13"
spec.summary = "Foundation层"
spec.description = <<-DESC
Foundation基础库、常用扩展
DESC
spec.homepage = "https://github.com/TT-usr/CustomKit"
spec.license = "MIT"
spec.authors = {
'姚天成' => '[email protected]'
}
spec.platform = :ios, "10.0"
spec.source = {
:git => "https://github.com/TT-usr/CustomKit",
:tag => "#{spec.version}"
}
spec.requires_arc = true
spec.prefix_header_file = false
spec.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3']
spec.source_files = "CustomKit/Classes/SwiftFoundation/**/*.{h,m,swift}"
spec.module_name = "#{spec.name}"
spec.header_dir = "Source"
spec.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
}
end