-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPlatformKit.podspec
More file actions
31 lines (27 loc) · 1.06 KB
/
PlatformKit.podspec
File metadata and controls
31 lines (27 loc) · 1.06 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
Pod::Spec.new do |s|
s.name = "PlatformKit"
s.version = "0.3.8"
s.summary = "A set of useful classes and extensions for modern Objective C"
s.homepage = "https://github.com/tumtumtum/PlatformKit/"
s.license = 'MIT'
s.author = { "Thong Nguyen" => "tumtumtum@gmail.com" }
s.source = { :git => "https://github.com/tumtumtum/PlatformKit.git", :tag => s.version.to_s}
s.platform = :ios
s.requires_arc = true
s.library = 'z'
s.ios.deployment_target = '5.1'
s.ios.frameworks = 'CoreFoundation'
s.osx.deployment_target = '10.7'
s.osx.frameworks = 'CoreFoundation'
s.watchos.deployment_target = '2.0'
s.watchos.frameworks = 'CoreFoundation'
s.subspec 'Core' do |sp|
sp.source_files = 'PlatformKit/PlatformKit/Core/**/*.{h,m}'
end
s.subspec 'Network' do |sp|
sp.source_files = 'PlatformKit/PlatformKit/Core/**/*.{h,m}', 'PlatformKit/PlatformKit/Network/**/*.{h,m}'
end
s.subspec 'UI' do |sp|
sp.source_files = 'PlatformKit/PlatformKit/Core/**/*.{h,m}', 'PlatformKit/PlatformKit/UI/**/*.{h,m}'
end
end