forked from younatics/YNDropDownMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYNDropDownMenu.podspec
31 lines (25 loc) · 1.52 KB
/
YNDropDownMenu.podspec
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
#
# Be sure to run `pod lib lint YNDropDownMenu.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'YNDropDownMenu'
s.version = '3.1.0'
s.summary = 'Awesome Dropdown menu for iOS with Swift 5'
s.description = <<-DESC
Awesome dropdown menu, written in Swift 5, appears dropdown menu to display a view of related items when a user click on the dropdown menu. You can customize dropdown view whatever you like (e.g. UITableView, UICollectionView... etc)
DESC
s.homepage = 'https://github.com/younatics/YNDropDownMenu'
s.screenshots = 'https://raw.githubusercontent.com/younatics/YNDropDownMenu/master/Images/YNDropDownMenu.gif', 'https://raw.githubusercontent.com/younatics/YNDropDownMenu/master/Images/YNDropDownMenu2.gif', 'https://raw.githubusercontent.com/younatics/YNDropDownMenu/master/Images/YNDropDownMenu3.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Seungyoun Yi" => "younatics@gmail.com" }
s.source = { :git => 'https://github.com/younatics/YNDropDownMenu.git', :tag => s.version.to_s }
s.source_files = 'YNDropDownMenu/*.swift'
s.social_media_url = 'https://twitter.com/younatics'
s.ios.deployment_target = '8.0'
s.frameworks = 'UIKit'
s.requires_arc = true
end