-
Notifications
You must be signed in to change notification settings - Fork 6
/
SKKeyboardResigner.podspec
22 lines (20 loc) · 1.04 KB
/
SKKeyboardResigner.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "SKKeyboardResigner"
s.version = "0.1.0"
s.summary = "SKKeyboardResigner can resign the keyboard responder for you."
s.description = <<-DESC
With SKKeyboardResigner you can forget about resigning the keyboard by yourself by adding a big button inside a view or doing some 'ñapas' like that. This library takes care of resigning the keyboard for the view you want without doing nothing.
DESC
s.homepage = "https://github.com/skyweb07/SKKeyboardResigner"
s.license = 'MIT'
s.author = { "Oscar Duran" => "[email protected]" }
s.source = { :git => "https://github.com/skyweb07/SKKeyboardResigner.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/skyweb07'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'SKKeyboardResigner' => ['Pod/Assets/*.png']
}
s.frameworks = 'UIKit', 'Foundation'
end