- Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathDrawerController.podspec
More file actions
Latest commit
24 lines (21 loc) · 1.02 KB
/
Copy pathDrawerController.podspec
File metadata and controls
24 lines (21 loc) · 1.02 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
Pod::Spec.newdo |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'=>'sascha@evolved.io',
'Malte Baumann'=>'malte@codingdivision.com'}
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