-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathVerticalTree.podspec
39 lines (31 loc) · 1.08 KB
/
VerticalTree.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
37
38
39
Pod::Spec.new do |s|
s.name = 'VerticalTree'
s.version = '0.0.1'
s.source = {
:git => "https://github.com/ZhipingYang/#{s.name}.git",
:tag => s.version.to_s
}
s.summary = 'Vertical drawing the TreeView'
s.description = "Provides a vertical drawing of the tree structure and view information about the tree‘s nodes"
s.homepage = "https://github.com/ZhipingYang/#{s.name}"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Daniel Yang' => '[email protected]' }
s.platform = :ios, '9.0'
s.requires_arc = true
s.swift_version = '5.0'
s.default_subspecs = 'Core', 'UI', 'PrettyExtension'
s.subspec 'Core' do |c|
c.source_files = 'class/core/*.swift'
c.framework = "Foundation"
end
s.subspec 'UI' do |ui|
ui.source_files = 'class/ui/*.swift'
ui.ios.framework = "UIKit"
ui.dependency 'VerticalTree/Core'
ui.dependency 'Then'
end
s.subspec 'PrettyExtension' do |pt|
pt.source_files = 'class/pretty/*.swift'
pt.dependency 'VerticalTree/Core'
end
end