-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKWKeyboardListener.podspec
More file actions
32 lines (23 loc) · 965 Bytes
/
KWKeyboardListener.podspec
File metadata and controls
32 lines (23 loc) · 965 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
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "KWKeyboardListener"
s.version = "1.0"
s.summary = "Easy way to make a class react to keyboard events."
s.description = <<-DESC
Make your classes listen to and react to Keyboard events in one line of code.
Supported events are:
* Will Show
* Did Show
* Will Change Frame
* Did Change Frame
* Will Hide
* Did Hide
Just use the class's add/removeListener methods and implement the events you wish to support.
DESC
s.homepage = "https://github.com/Altimor/KWKeyboardListener"
s.license = "GPL-3"
s.author = { "Florent Crivello" => "florent.crivello@gmail.com" }
s.platform = :ios, "5.0"
s.requires_arc = true
s.source = { :git => "https://github.com/Altimor/KWKeyboardListener.git", :tag => "1.0" }
s.source_files = "KeyboardListener/KWKeyboardListener", "KeyboardListener/KWKeyboardListener/*.{h,m}"
end