-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwipeMenu.podspec
More file actions
27 lines (19 loc) · 837 Bytes
/
SwipeMenu.podspec
File metadata and controls
27 lines (19 loc) · 837 Bytes
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 = 'SwipeMenu'
s.version = '2.0.0'
s.summary = 'Swipe menu is a little piece that add you support to display a menu easily'
s.description = <<-DESC
SwipeMenu offers you a fast implementation to display a menu with two items:
- The menu controller
- The content controller
in a few lines of code.
DESC
s.homepage = 'https://github.com/daviwiki/swift-menu-controller'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'David Martínez'
s.source = { :git => 'https://github.com/daviwiki/swift-menu-controller.git', :tag => s.version.to_s }
s.swift_version = '4.1'
s.ios.deployment_target = '10.0'
s.source_files = 'SwipeMenu/Classes/**/*'
s.framework = 'UIKit'
end