-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGetLaid.podspec
32 lines (26 loc) · 1.05 KB
/
GetLaid.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
Pod::Spec.new do |s|
# meta infos
s.name = "GetLaid"
s.version = "3.0.1"
s.summary = "Swift AutoLayout Wrapper"
s.description = "The Most Readable & Concise AutoLayout Swift Code"
s.homepage = "http://flowtoolz.com"
s.license = 'MIT'
s.author = { "Flowtoolz" => "contact@flowtoolz.com" }
s.source = { :git => "https://github.com/flowtoolz/GetLaid.git",
:tag => s.version.to_s }
# compiler requirements
s.requires_arc = true
s.swift_version = '5.0'
# minimum platform SDKs
s.platforms = {:ios => "9.0", :osx => "10.12", :tvos => "9.0"}
# minimum deployment targets
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '9.0'
# sources
s.source_files = 'Code/AllPlatforms/**/*.swift'
s.ios.source_files = 'Code/UIKit/**/*.swift'
s.tvos.source_files = 'Code/UIKit/**/*.swift'
s.osx.source_files = 'Code/AppKit/**/*.swift'
end