-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLayoutUIiOS12.podspec
24 lines (19 loc) · 1.04 KB
/
LayoutUIiOS12.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
Pod::Spec.new do |s|
s.name = 'LayoutUIiOS12'
s.version = '0.0.2'
s.summary = 'Constraint-based autolayout system written on Swift. Not Autolayout wrapper. Reimplemenation of CGLayout.'
s.description = 'Powerful autolayout framework, that can manage UIView(NSView), CALayer and not rendered views.'
s.homepage = 'https://github.com/k-o-d-e-n/LayoutUI'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Denis Koryttsev' => 'koden.u8800@gmail.com' }
s.source = { :git => 'https://github.com/k-o-d-e-n/LayoutUI.git', :branch => 'master' }
s.social_media_url = 'https://twitter.com/K_o_D_e_N'
# s.documentation_url = 'https://k-o-d-e-n.github.io/LayoutUI/'
s.module_name = 'LayoutUI'
s.swift_version = '5.0'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '10.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Sources/LayoutUI/**.swift'
s.exclude_files = 'Sources/LayoutUI/**.gyb.swift', 'Sources/LayoutUI/SwiftUI.swift'
end