-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathKeyboardy.podspec
More file actions
22 lines (18 loc) · 856 Bytes
/
Keyboardy.podspec
File metadata and controls
22 lines (18 loc) · 856 Bytes
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 = "Keyboardy"
s.version = "0.2.7"
s.summary = "UIViewController extension for convenient keyboard management."
s.description = <<-DESC
Keyboardy extends UIViewController with few simple methods and provides delegate for handling keyboard appearance notifications.
DESC
s.homepage = "https://github.com/podkovyrin/Keyboardy"
s.license = 'MIT'
s.author = { "Andrew Podkovyrin" => "podkovyrin@gmail.com" }
s.source = { :git => "https://github.com/podkovyrin/Keyboardy.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/podkovyr'
s.swift_version = '5.0'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/**/*'
s.frameworks = 'UIKit'
end