-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZDTinyLayout.podspec
More file actions
28 lines (25 loc) · 1.02 KB
/
ZDTinyLayout.podspec
File metadata and controls
28 lines (25 loc) · 1.02 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
Pod::Spec.new do |s|
s.name = "ZDTinyLayout"
s.version = "0.0.2"
s.summary = "A collection of operators and utilities that simplify iOS layout code."
s.description = <<-DESC
Create constraints using intuitive operators built directly on top of the NSLayoutAnchor API. Layout has never been simpler!
DESC
s.homepage = "https://github.com/faimin/ZDTinyLayout"
s.license = 'MIT'
s.author = {
"Rob Visentin" => "jvisenti@gmail.com",
"Zero.D.Saber" => "fuxianchao@gmail.com"
}
s.source = { :git => "https://github.com/faimin/ZDTinyLayout.git", :tag => s.version.to_s }
s.swift_versions = ['5.9']
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.visionos.deployment_target = '1.0'
s.requires_arc = true
s.source_files = "Source/**/*.swift"
s.resource_bundles = {
"#{s.name}_Privacy" => ["Source/Resource/PrivacyInfo.xcprivacy"],
}
end