forked from agens-no/AGGeometryKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAGGeometryKit.podspec
executable file
·36 lines (32 loc) · 1.22 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
36
Pod::Spec.new do |s|
s.name = "AGGeometryKit"
s.version = "1.0.4"
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.platform = :ios, '5.0'
s.requires_arc = true
s.authors = {
"Håvard Fossli" => "[email protected]",
"Marcus Eckert" => "[email protected]",
"Logan Holmes" => "[email protected]"
}
s.source = {
:git => "https://github.com/hfossli/AGGeometryKit.git",
:tag => s.version.to_s
}
s.default_subspec = 'Default'
s.subspec 'Default' do |ss|
ss.dependency 'AGGeometryKit/Core'
ss.dependency 'AGGeometryKit/Dependencies'
end
s.subspec 'Dependencies' do |ss|
ss.dependency 'JRSwizzle', '~> 1.0'
ss.dependency 'AGAssert', '~> 0.2'
end
s.subspec 'Core' do |ss|
ss.frameworks = 'SystemConfiguration', 'IOKit', 'CoreGraphics', 'UIKit', 'QuartzCore'
ss.source_files = 'Source/**/*.{h,m}'
ss.exclude_files = 'Source/**/*Test.{h,m}'
end
end