-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathVerticalTree.podspec
More file actions
39 lines (31 loc) · 1.17 KB
/
VerticalTree.podspec
File metadata and controls
39 lines (31 loc) · 1.17 KB
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 = 'A vertical tree view and console tree formatter for Swift.'
s.description = 'VerticalTree renders tree-structured data as a foldable vertical list and provides debug-friendly tree formatting for UIKit objects, layers, controllers, and custom node models.'
s.homepage = "https://github.com/ZhipingYang/#{s.name}"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Daniel Yang' => 'xcodeyang@gmail.com' }
s.ios.deployment_target = '26.2'
s.requires_arc = true
s.swift_versions = ['6']
s.default_subspecs = 'Core', 'UI', 'PrettyExtension'
s.subspec 'Core' do |c|
c.source_files = 'class/core/*.swift'
c.frameworks = 'Foundation'
end
s.subspec 'UI' do |ui|
ui.source_files = 'class/ui/*.swift'
ui.frameworks = '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