-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCKCircleMenuView.podspec
More file actions
29 lines (20 loc) · 1.14 KB
/
CKCircleMenuView.podspec
File metadata and controls
29 lines (20 loc) · 1.14 KB
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
Pod::Spec.new do |s|
s.name = "CKCircleMenuView"
s.version = "0.4.0"
s.summary = "An easy-to-integrate popup menu of round buttons placed on a circle."
s.description = <<-DESC
CKCircleMenuView adds an eye-catchy circle menu to your iOS app that
is as easy to use as an alert view. Appearance and behaviour can be
configured. Get notified via delegate call, which of the buttons got
activated.
DESC
s.homepage = "https://github.com/JaNd3r/CKCircleMenuView"
s.screenshots = "https://raw.githubusercontent.com/JaNd3r/CKCircleMenuView/master/CircleMenuDemo1.gif", "https://raw.githubusercontent.com/JaNd3r/CKCircleMenuView/master/CircleMenuDemo1.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Christian Klaproth" => "ck@cm-works.de" }
s.social_media_url = "http://twitter.com/JaNd3r"
s.platform = :ios, "9.0"
s.requires_arc = true
s.source = { :git => "https://github.com/JaNd3r/CKCircleMenuView.git", :tag => "0.4.0" }
s.source_files = "CKCircleMenuView/*.{h,m}"
end