-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMDBManager.podspec
36 lines (35 loc) · 1.17 KB
/
CMDBManager.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 CMDBManager.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 = "CMDBManager"
spec.version = "0.0.1"
spec.summary = "CMDBManager"
spec.description = <<-DESC
CMDBManager
DESC
spec.homepage = "https://github.com/TT-usr/CustomKit"
spec.license = "MIT"
spec.authors = {
'姚天成' => 'ytc19930125@gmail.com'
}
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/DBManager/*.{h,m,swift}"
spec.module_name = "#{spec.name}"
spec.header_dir = "Source"
spec.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
}
spec.dependency 'WCDB.swift'
end