-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathVisualConstraints.podspec
More file actions
36 lines (31 loc) · 1.49 KB
/
VisualConstraints.podspec
File metadata and controls
36 lines (31 loc) · 1.49 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
29
30
31
32
33
34
35
36
#
# Be sure to run `pod lib lint VisualConstraints.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "VisualConstraints"
s.version = "1.1.0"
s.summary = "Small library for making it easy to programmatically add constraints"
s.description = <<-DESC
The Pod provides methods to easily add and debug constraints programmatically. It includes methods for the most commonly used layouting of UI elements. The Pod also includes methods to ease the use of scrollviews and autolayout.
DESC
s.homepage = "https://github.com/catalinaturlea/VisualConstraints"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Catalina Turlea" => "catalina.turlea@gmail.com" }
s.source = { :git => "https://github.com/catalinaturlea/VisualConstraints.git", :tag => "1.1.0" }
s.social_media_url = 'https://twitter.com/CatalinaTurlea'
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/*'
s.resource_bundles = {
'VisualConstraints' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/*.h'
s.frameworks = 'UIKit', 'MapKit'
s.dependency 'CocoaLumberjack'
end