- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStackLayout.podspec
More file actions
Latest commit
28 lines (24 loc) · 1.16 KB
/
Copy pathStackLayout.podspec
File metadata and controls
28 lines (24 loc) · 1.16 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
#
# Be sure to run `pod lib lint StackLayout.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.newdo |s|
s.name="StackLayout"
s.version="1.0.6"
s.summary="An more flexible alternative to UIStackView."
s.description=<<-DESC
Create Auto Layout constraints to layout views in stack. Alternative to UIStackView which supports multiple different layouts in a single view. Also includes helpful shortcuts for creating NSLayoutConstraints.
DESC
s.homepage="https://github.com/bridger/StackLayout"
s.license='MIT'
s.author={"Bridger Maxwell"=>"bridger.maxwell@gmail.com"}
s.source={:git=>"https://github.com/bridger/StackLayout.git",:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/bridgermax'
s.platform=:ios,'8.0'
s.requires_arc=true
s.static_framework=true
s.source_files='Pod/StackLayout/**/*'
end