-
Notifications
You must be signed in to change notification settings - Fork 150
/
AppDevKit.podspec
53 lines (43 loc) · 2.68 KB
/
AppDevKit.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Pod::Spec.new do |s|
s.name = "AppDevKit"
s.version = "1.7.1"
s.summary = "The collection of open develop utilities for iOS development team. It contains foundational and useful features that Apple didn't provide."
s.homepage = "https://github.com/yahoo/AppDevKit"
s.license = "Yahoo! Inc. BSD license"
s.author = { "anistar sung" => "[email protected]", "core team" => "[email protected]" }
s.platform = :ios, "10.0"
s.ios.deployment_target = '10.0'
s.subspec 'AppDevCommonKit' do |appDevCommonKit|
appDevCommonKit.source_files = ['AppDevPods/AppDevCommonKit/*.{h,m}', 'AppDevPods/AppDevCommonKit.h']
appDevCommonKit.public_header_files = ['AppDevPods/AppDevCommonKit/**/*.h', 'AppDevPods/AppDevCommonKit.h']
end
s.subspec 'AppDevUIKit' do |appDevUIKit|
appDevUIKit.source_files = ['AppDevPods/AppDevUIKit/*.{h,m}', 'AppDevPods/AppDevUIKit/ValueObjects/*.{h,m}','AppDevPods/AppDevUIKit.h']
appDevUIKit.public_header_files = ['AppDevPods/AppDevUIKit/**/*.h', 'AppDevPods/AppDevUIKit.h']
appDevUIKit.dependency 'AppDevKit/AppDevCommonKit'
end
s.subspec 'AppDevAnimateKit' do |appDevAnimateKit|
appDevAnimateKit.source_files = ['AppDevPods/AppDevAnimateKit/*.{h,m}', 'AppDevPods/AppDevAnimateKit.h']
appDevAnimateKit.public_header_files = ['AppDevPods/AppDevAnimateKit/**/*.h', 'AppDevPods/AppDevAnimateKit.h']
end
s.subspec 'AppDevImageKit' do |appDevImageKit|
appDevImageKit.source_files = ['AppDevPods/AppDevImageKit/*.{h,m}', 'AppDevPods/AppDevImageKit.h']
appDevImageKit.public_header_files = ['AppDevPods/AppDevImageKit/**/*.h', 'AppDevPods/AppDevImageKit.h']
appDevImageKit.dependency 'AppDevKit/AppDevCommonKit'
end
s.subspec 'AppDevListViewKit' do |appDevListViewKit|
appDevListViewKit.source_files = ['AppDevPods/AppDevListViewKit/*.{h,m}', 'AppDevPods/AppDevListViewKit.h']
appDevListViewKit.public_header_files = ['AppDevPods/AppDevListViewKit/**/*.h', 'AppDevPods/AppDevListViewKit.h']
appDevListViewKit.dependency 'AppDevKit/AppDevCommonKit'
appDevListViewKit.dependency 'AppDevKit/AppDevUIKit'
end
s.subspec 'AppDevCameraKit' do |appDevCameraKit|
appDevCameraKit.source_files = ['AppDevPods/AppDevCameraKit/*.{h,m}', 'AppDevPods/AppDevCameraKit.h']
appDevCameraKit.public_header_files = ['AppDevPods/AppDevCameraKit/**/*.h', 'AppDevPods/AppDevCameraKit.h']
end
s.source = { :git => "https://github.com/yahoo/AppDevKit.git", :tag => s.version.to_s }
s.source_files = "AppDevPods/AppDevKit.h"
s.public_header_files = "AppDevPods/AppDevKit.h"
s.requires_arc = true
s.resource_bundles = {'AppDevKit' => ['PrivacyInfo.xcprivacy']}
end