-
Notifications
You must be signed in to change notification settings - Fork 129
/
DrawerController.podspec
24 lines (21 loc) · 1.02 KB
/
DrawerController.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
Pod::Spec.new do |s|
s.name = 'DrawerController'
s.version = '4.0.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://github.com/sascha/DrawerController'
s.authors = { 'Sascha Schwabbauer' => '[email protected]',
'Malte Baumann' => '[email protected]' }
s.summary = 'A lightweight, easy-to-use side drawer navigation controller (Swift port of MMDrawerController).'
s.social_media_url = 'http://twitter.com/_saschas'
s.source = { :git => 'https://github.com/sascha/DrawerController.git', :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.subspec 'Core' do |ss|
ss.source_files = 'DrawerController/DrawerController.swift', 'DrawerController/DrawerSegue.swift'
ss.framework = 'QuartzCore'
end
s.subspec 'DrawerVisualStates' do |ss|
ss.source_files = 'DrawerController/DrawerBarButtonItem.swift', 'DrawerController/AnimatedMenuButton.swift', 'DrawerController/DrawerVisualState.swift'
ss.dependency 'DrawerController/Core'
end
end