forked from yankodimitrov/SwiftLayoutKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftLayoutKit.podspec
More file actions
24 lines (17 loc) · 902 Bytes
/
SwiftLayoutKit.podspec
File metadata and controls
24 lines (17 loc) · 902 Bytes
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 = "SwiftLayoutKit"
s.version = "0.1.2"
s.summary = "An elegant and simple way to build your auto layout constraints"
s.description = <<-DESC
Produce auto layout constraints by expressing the relations between the layout attributes of your views or by using the visual format language.
DESC
s.homepage = "https://github.com/yankodimitrov/SwiftLayoutKit"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.social_media_url = "https://twitter.com/_yankodimitrov"
s.platform = :ios, "8.0"
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/yankodimitrov/SwiftLayoutKit.git", :tag => "v#{s.version}" }
s.source_files = "SwiftLayoutKit/*.swift"
s.requires_arc = true
end