-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathEasyAnchor.podspec
More file actions
25 lines (21 loc) · 792 Bytes
/
Copy pathEasyAnchor.podspec
File metadata and controls
25 lines (21 loc) · 792 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
25
Pod::Spec.new do |s|
s.name = "EasyAnchor"
s.summary = "Declarative, extensible, powerful Auto Layout for iOS and macOS"
s.version = "3.0.0"
s.homepage = "https://github.com/onmyway133/EasyAnchor"
s.license = 'MIT'
s.author = { "Khoa Pham" => "onmyway133@gmail.com" }
s.source = {
:git => "https://github.com/onmyway133/EasyAnchor.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/onmyway133'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.2'
s.requires_arc = true
s.source_files = 'Sources/**/*'
s.ios.frameworks = 'UIKit', 'Foundation'
s.osx.frameworks = 'Cocoa', 'Foundation'
s.swift_version = '5.0'
end