Uh oh!
There was an error while loading. Please reload this page.
forked from agens-no/AGGeometryKit
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAGGeometryKit.podspec
More file actions
Latest commit
executable file
·36 lines (33 loc) · 1.35 KB
/
Copy pathAGGeometryKit.podspec
File metadata and controls
executable file
·36 lines (33 loc) · 1.35 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
Pod::Spec.newdo |s|
s.name="AGGeometryKit"
s.version="1.3.0"
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='15.0'
s.tvos.deployment_target='9.0'
s.requires_arc=true
s.authors={
"Håvard Fossli"=>"hfossli@agens.no",
"Logan Holmes"=>"snown27@gmail.com",
"Jørund Almås"=>"jalmaas@agens.no",
"Marcus Eckert"=>"marcuseckert@gmail.com"
}
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}'
s.exclude_files="AGGeometryKit/include"
# Some users of this library prefers to only use this subspec
s.subspec'UIViewProperties'do |ss|
ss.frameworks='CoreGraphics','UIKit','QuartzCore'
ss.source_files='**/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='**/CALayer+AGK+Properties.{h,m}'
end
end