-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAnyMenu.podspec
More file actions
executable file
·27 lines (19 loc) · 899 Bytes
/
AnyMenu.podspec
File metadata and controls
executable file
·27 lines (19 loc) · 899 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 = "AnyMenu"
s.version = "1.0.0"
s.summary = "An easy to use menu framework for any styling use case."
s.description = <<-DESC
Create your own menu from anywhere with any transition you like.
Choose from existing animations or implement your own ones.
DESC
s.homepage = "https://github.com/Flinesoft/AnyMenu"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Cihat Gündüz" => "cocoapods@cihatguenduez.de" }
s.social_media_url = "https://twitter.com/Jeehut"
s.ios.deployment_target = "10.0"
s.source = { :git => "https://github.com/Flinesoft/AnyMenu.git", :tag => "#{s.version}" }
s.source_files = "Sources", "Sources/**/*.swift"
s.framework = "Foundation"
# s.dependency "HandyUIKit", "~> 1.4"
# s.dependency "HandySwift", "~> 2.3"
end