-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathAGGeometryKit.podspec
executable file
·35 lines (32 loc) · 1.33 KB
/
AGGeometryKit.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
Pod::Spec.new do |s|
s.name = "AGGeometryKit"
s.version = "1.2.9"
s.summary = "Quadrilaterals on CALayer, CGGeometry-functions, UIView/CALayer properties and other invaluable tools."
s.homepage = "https://github.com/hfossli/AGGeometryKit"
s.license = 'MIT'
s.ios.deployment_target = '5.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.authors = {
"Håvard Fossli" => "[email protected]",
"Logan Holmes" => "[email protected]",
"Jørund Almås" => "[email protected]",
"Marcus Eckert" => "[email protected]"
}
s.source = {
:git => "https://github.com/hfossli/AGGeometryKit.git",
:tag => s.version.to_s
}
s.frameworks = 'CoreGraphics', 'UIKit', 'QuartzCore'
s.source_files = 'AGGeometryKit/**/*.{h,m}'
# Some users of this library prefers to only use this subspec
s.subspec 'UIViewProperties' do |ss|
ss.frameworks = 'CoreGraphics', 'UIKit', 'QuartzCore'
ss.source_files = 'AGGeometryKit/**/UIView+AGK+Properties.{h,m}'
end
# Some users of this library prefers to only use this subspec
s.subspec 'CALayerProperties' do |ss|
ss.frameworks = 'CoreGraphics', 'QuartzCore'
ss.source_files = 'AGGeometryKit/**/CALayer+AGK+Properties.{h,m}'
end
end