-
Notifications
You must be signed in to change notification settings - Fork 21
/
SwiftMediator.podspec
36 lines (27 loc) · 1.02 KB
/
SwiftMediator.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
Pod::Spec.new do |s|
s.name = 'SwiftMediator'
s.version = '1.3.1'
s.summary = '路由.'
s.description = <<-DESC
工具.
DESC
s.homepage = 'https://github.com/jackiehu/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'HU' => '[email protected]' }
s.source = { :git => 'https://github.com/jackiehu/SwiftMediator.git', :tag => s.version.to_s }
s.ios.deployment_target = "11.0"
s.swift_versions = ['5.0','5.1','5.2']
s.requires_arc = true
s.frameworks = "UIKit","Foundation","SwiftUI" #支持的框架
s.subspec 'Target-Action' do |ss|
ss.dependency 'SwiftMediator/Delegate'
ss.dependency 'SwiftMediator/Tools'
ss.source_files = 'Sources/SwiftMediator/Target-Action/**/*'
end
s.subspec 'Delegate' do |ss|
ss.source_files = 'Sources/SwiftMediator/Delegate/**/*'
end
s.subspec 'Tools' do |ss|
ss.source_files = 'Sources/SwiftMediator/Tools/**/*'
end
end