-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathSlideMenu3D.podspec
More file actions
27 lines (23 loc) · 1.19 KB
/
SlideMenu3D.podspec
File metadata and controls
27 lines (23 loc) · 1.19 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
Pod::Spec.new do |s|
s.name = "SlideMenu3D"
s.version = "0.1.6"
s.summary = "A small class for lateral menu with 3D effect."
s.description = <<-DESC
A small class for lateral menu with 3D effect, support tap gesture when el menu is open and tap gesture all time, support device orientation. you can choose the side for the menu.
DESC
s.homepage = "https://github.com/hunk/SlideMenu3D"
s.screenshots = "https://raw.githubusercontent.com/hunk/MediaDemo/master/SlideMenu3D/menu_left.png", "https://raw.githubusercontent.com/hunk/MediaDemo/master/SlideMenu3D/menu_right.png"
s.license = 'MIT'
s.author = { "@hunk" => "ing.edgar@gmail.com" }
s.source = { :git => "https://github.com/hunk/SlideMenu3D.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/hunk'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'SlideMenu3D' => ['Pod/Assets/*.png']
}
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end