Skip to content

Commit 245f443

Browse files
committed
Add podspec
1 parent 821b27f commit 245f443

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

ALButtonMenu.podspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Pod::Spec.new do |s|
2+
3+
s.name = "ALButtonMenu"
4+
s.version = "1.0.0"
5+
s.summary = "A simple, fully customizable menu solution for iOS."
6+
s.description = <<-DESC
7+
ALButtonMenu is a customizable menu solution for iOS. Create a menu view controller (or use
8+
the one provided) and specify the characteristics of the shortcut button. Then tap the button
9+
to quickly show and hide the menu using an animated mask transition effect."
10+
DESC
11+
s.homepage = "https://github.com/lobianco/ALButtonMenu"
12+
s.screenshots = "https://raw.githubusercontent.com/lobianco/ALButtonMenu/master/Screenshots/demo1.gif", "https://raw.githubusercontent.com/lobianco/ALButtonMenu/master/Screenshots/demo2.gif"
13+
s.license = "MIT"
14+
s.author = { "Anthony Lobianco" => "[email protected]" }
15+
s.social_media_url = "https://twitter.com/lobnco"
16+
s.platform = :ios, "8.0"
17+
s.source = { :git => "https://github.com/lobianco/ALButtonMenu.git", :tag => "#{s.version}" }
18+
s.source_files = "Source/*.{h,m}"
19+
s.private_header_files = "Source/*_ALPrivate.h"
20+
s.requires_arc = true
21+
22+
end

0 commit comments

Comments
 (0)