-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathUIView+FDCollapsibleConstraints.podspec
More file actions
21 lines (19 loc) · 1.87 KB
/
UIView+FDCollapsibleConstraints.podspec
File metadata and controls
21 lines (19 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "UIView+FDCollapsibleConstraints"
s.version = "1.1"
s.summary = "Collapsible auto layout constraints."
s.description = "Collapse a view with its selected auto layout constraints in interface builder."
s.homepage = "https://github.com/forkingdog/UIView-FDCollapsibleConstraints"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "forkingdog group" => "https://github.com/forkingdog" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "6.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/forkingdog/UIView-FDCollapsibleConstraints.git", :tag => "1.1" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Classes/*.{h,m}"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
end