forked from agens-no/AGGeometryKit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAGGeometryKit.podspec
More file actions
executable file
·30 lines (26 loc) · 1023 Bytes
/
AGGeometryKit.podspec
File metadata and controls
executable file
·30 lines (26 loc) · 1023 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
26
27
28
29
30
Pod::Spec.new do |s|
s.name = "AGGeometryKit"
s.version = "0.1.8.3"
s.summary = "A bundle of small classes which enriches your possibilities with UIKit and CoreAnimation."
s.homepage = "https://github.com/hfossli/AGGeometryKit.git"
s.authors = { "Håvard Fossli" => "hfossli@agens.no" }
s.license = 'MIT'
s.source = {
:git => "https://github.com/hfossli/AGGeometryKit.git",
:tag => s.version.to_s
}
s.platform = :ios
s.requires_arc = true
s.default_subspec = 'Default'
s.subspec 'Default' do |ss|
ss.dependency 'AGGeometryKit/Core'
ss.dependency 'AGGeometryKit/Dependencies'
ss.frameworks = 'SystemConfiguration', 'IOKit', 'CoreGraphics', 'UIKit', 'QuartzCore'
end
s.subspec 'Core' do |ss|
ss.source_files = 'Source/**/*.{h,m}'
ss.exclude_files = 'Source/**/*Test.{h,m}'
end
s.subspec 'Dependencies' do |ss|
end
end