-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathTypist.podspec
27 lines (19 loc) · 834 Bytes
/
Typist.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
Pod::Spec.new do |s|
s.name = "Typist"
s.version = "1.4.3"
s.summary = "Small Swift UIKit keyboard manager for iOS apps."
s.description = <<-DESC
Typist is a small, drop-in Swift UIKit keyboard manager for iOS apps.
It helps you manage keyboard's screen presence and behavior without
notification center and Objective-C.
DESC
s.homepage = "https://github.com/totocaster/Typist"
s.license = "MIT"
s.author = { "Toto Tvalavadze" => "totocaster@me.com" }
s.social_media_url = "http://twitter.com/totocaster"
s.platform = :ios, "10.0"
s.swift_version = '5.2'
s.source = { :git => "https://github.com/totocaster/Typist.git", :tag => "1.4.3" }
s.source_files = 'Sources/Typist/Typist.swift'
s.framework = 'UIKit'
end