forked from regexident/DLWidgetMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDLWidgetMenu.podspec
executable file
·39 lines (28 loc) · 1.62 KB
/
DLWidgetMenu.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
32
33
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = "DLWidgetMenu"
s.version = "1.2"
s.summary = "Versatile solution for displaying widget menus. Easily adjustable with custom layouts and/or animations."
s.description = <<-DESC
DLWidgetMenu is a versatile solution for displaying widget menus and can easily be extended with custom layouts and/or animations
## Features
DLWidgetMenu** comes with three built-in layouts:
* `DLWMLinearLayout`
* `DLWMRadialLayout`
* `DLWMSpiralLayout`
**DLWidgetMenu** uses iOS7's **spring animations** (`DLWMSpringMenuAnimator`) by default, but can easily be provided with your own **custom animations** as well (by subclassing `DLWMMenuAnimator`).
**DLWidgetMenu** observes its menu items for these **gesture recognizer events**:
* single tap
* double tap
* long press
* pan
* pinch
and **forwards them** directly to its **delegate**.
DESC
s.homepage = "https://github.com/regexident/DLWidgetMenu"
s.license = { :type => 'BSD-3', :file => 'LICENSE' }
s.author = { "Vincent Esche" => "[email protected]" }
s.platform = :ios, '6.1'
s.source = { :git => "https://github.com/regexident/DLWidgetMenu.git", :tag => '1.2' }
s.source_files = 'DLWidgetMenu/Classes/*.{h,m}'
s.requires_arc = true
end