-
Notifications
You must be signed in to change notification settings - Fork 2
/
UINodes.podspec
28 lines (23 loc) · 957 Bytes
/
UINodes.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|
# meta infos
s.name = "UINodes"
s.version = "0.0.1"
s.summary = "Graph & Tree Visualization"
s.description = "Interactive Graph & Tree Visualization on iOS, macOS, tvOS, based on the SwiftNodes framework"
s.homepage = "http://flowtoolz.com"
s.license = 'MIT'
s.author = { "Flowtoolz" => "contact@flowtoolz.com" }
s.source = { :git => "https://github.com/flowtoolz/UINodes.git",
:tag => s.version.to_s }
# compiler requirements
s.requires_arc = true
s.swift_version = '4.2'
# minimum platform SDKs
s.platforms = {:ios => "9.0", :osx => "10.11", :tvos => "9.0"}
# minimum deployment targets
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
# sorces
s.source_files = 'Code/**/*.swift'
end