- Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathDropDownMenuKit.podspec
More file actions
Latest commit
21 lines (18 loc) · 1.25 KB
/
Copy pathDropDownMenuKit.podspec
File metadata and controls
21 lines (18 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.newdo |s|
s.name="DropDownMenuKit"
s.version="1.0"
s.summary="UIKit drop down menu, simple yet flexible and written in Swift"
s.description="DropDownMenuKit is a custom UIKit control to show a menu attached to the navigation bar or toolbar. The menu appears with a sliding animation and can be deeply customized. For example, with icons, embedded controls, or a checkmark to denote a selected row among multiple menu cells."
s.homepage="https://github.com/qmathe/DropDownMenuKit"
s.screenshots="http://www.quentinmathe.com/github/DropDownMenuKit/App%20History%20Menu%20-%20iPhone%205.png"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Quentin Mathé"=>"quentin.mathe@gmail.com"}
s.social_media_url="http://twitter.com/quentin_mathe"
s.swift_version="5.0"
s.platform=:ios,"11.0"
s.source={:git=>"https://github.com/qmathe/DropDownMenuKit.git",:tag=>"1.0"}
s.source_files="*.swift","*.{h,m}"
s.public_header_files="*.h"
# Each xcassets directory must be in a distinct resource bundle (otherwise multiple assets.car end up in the same bundle)
s.resource_bundles={"DropDownMenuKitAssets"=>["DropDownMenuKit.xcassets"]}
end