This repository has been archived by the owner on Sep 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SnapLayout.podspec
43 lines (35 loc) · 1.64 KB
/
SnapLayout.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
33
34
35
36
37
38
39
40
41
42
43
#
# Be sure to run `pod lib lint SnapLayout.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.new do |s|
s.name = 'SnapLayout'
s.version = '1.9.7'
s.summary = 'Concise API for iOS Auto Layout'
s.description = <<-DESC
# SnapLayout
Concise API for iOS Auto Layout. SnapLayout extends `UIView` to deliver a list of APIs to improve
readability while also shortening constraint code. Internally uses AutoLayout to provide the best
experience. With SnapLayout, developers can remove boilerplate code but not at the cost of readability.
Imagine applying any or all of the following constraints in one line of code: top, leading, trailing,
bottom, width, height, centerX, centerY. This is possible with `SnapLayout`.
DESC
s.homepage = 'https://github.com/sp71/SnapLayout'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Satinder Singh' => '[email protected]' }
s.source = { :git => 'https://github.com/sp71/SnapLayout.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'SnapLayout/Classes/**/*'
# s.resource_bundles = {
# 'SnapLayout' => ['SnapLayout/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
end