-
Notifications
You must be signed in to change notification settings - Fork 32
/
KWDrawerController.podspec
37 lines (31 loc) · 1.34 KB
/
KWDrawerController.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
Pod::Spec.new do |s|
s.name = 'KWDrawerController'
s.version = '4.2'
s.summary = 'Drawer view controller that easy to use!'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://github.com/kawoou/KWDrawerController'
s.authors = { 'Jungwon An' => 'kawoou@kawoou.kr' }
s.social_media_url = 'http://fb.com/kawoou'
s.platform = :ios
s.source = { :git => 'https://github.com/kawoou/KWDrawerController.git', :tag => 'v' + s.version.to_s }
s.frameworks = 'QuartzCore'
s.module_name = 'KWDrawerController'
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'DrawerController/Types/*.swift',
'DrawerController/Models/*.swift',
'DrawerController/View/*.swift',
'DrawerController/Animator/*.swift',
'DrawerController/Transition/*.swift',
'DrawerController/*.swift',
'DrawerController/Segue/*.swift'
end
s.subspec 'RxSwift' do |ss|
ss.source_files = 'DrawerController/Rx/*.swift'
ss.dependency "KWDrawerController/Core"
ss.dependency "RxSwift", ">= 4.0.0"
ss.dependency "RxCocoa", ">= 4.0.0"
end
end