forked from apploft/APLSlideMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPLSlideMenu.podspec
More file actions
32 lines (22 loc) · 1.16 KB
/
APLSlideMenu.podspec
File metadata and controls
32 lines (22 loc) · 1.16 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
32
Pod::Spec.new do |s|
s.name = "APLSlideMenu"
s.version = "0.1.0"
s.summary = "Sliding Hamburger Menu like the one in the Facebook App"
s.description = <<-DESC
Sliding Hamburger Menu like the one in the Facebook App
* supports left and right slide menus
* supports optional swipe gesture support
* supports device orientations
* supports optional permanent display of slidemenu in landscape on iPad like an UISplitViewController
* supports iOS 7 View controller-based status bar appearance
DESC
s.homepage = "https://github.com/apploft/APLSlideMenu"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'Christopher Groß', 'Tobias Conradi', 'Tino Rachui', 'Michael Kamphausen', 'Thorsten Siebenborn'
s.platform = :ios, '5.0'
s.source = { :git => "https://github.com/apploft/APLSlideMenu.git", :tag => s.version.to_s }
s.source_files = 'APLSlideMenu', 'APLSlideMenu/**/*.{h,m}'
s.exclude_files = 'Classes/Exclude'
s.framework = 'QuartzCore'
s.requires_arc = true
end