-
Notifications
You must be signed in to change notification settings - Fork 3
/
DDLoggerSwift.podspec
28 lines (28 loc) · 1.02 KB
/
DDLoggerSwift.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
Pod::Spec.new do |s|
s.name = 'DDLoggerSwift'
s.swift_version = '5.0'
s.version = '5.1.4'
s.license= { :type => "MIT", :file => "LICENSE" }
s.summary = 'The iOS side displays the output log log on the screen, and can generate log file sharing, which is convenient for debugging information'
s.homepage = 'https://github.com/DamonHu/DDLoggerSwift'
s.authors = { 'ZXKitCode' => '[email protected]' }
s.source = { :git => "https://github.com/DamonHu/DDLoggerSwift.git", :tag => s.version}
s.requires_arc = true
s.ios.deployment_target = '11.0'
s.documentation_url = 'https://ddceo.com/blog/1305.html'
s.subspec 'core' do |cs|
cs.resource_bundles = {
'DDLoggerSwift' => ['pod/assets/**/*']
}
cs.library = 'sqlite3'
cs.source_files = "pod/*.swift", "pod/view/*.swift"
cs.dependency 'DDUtils/ui', '~>5'
cs.dependency 'DDUtils/utils', '~>5'
end
s.subspec 'socket' do |cs|
cs.dependency 'DDLoggerSwift/core'
cs.dependency 'CocoaAsyncSocket'
cs.source_files = "pod/socket/*.swift"
end
s.default_subspecs = "core"
end