forked from KeyboardKit/KeyboardKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeyboardKit.podspec
More file actions
22 lines (17 loc) · 872 Bytes
/
KeyboardKit.podspec
File metadata and controls
22 lines (17 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Run `pod lib lint KeyboardKit.podspec' to ensure this is a valid spec.
Pod::Spec.new do |s|
s.name = 'KeyboardKit'
s.version = '0.7.0'
s.summary = 'KeyboardKit is a Swift library for creating custom keyboard extensions.'
s.description = <<-DESC
KeyboardKit is a Swift library that can be used to easily create custom keyboard
extensions for iOS.
DESC
s.homepage = 'https://github.com/danielsaidi/KeyboardKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Daniel Saidi' => 'daniel.saidi@gmail.com' }
s.source = { :git => 'https://github.com/danielsaidi/KeyboardKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/danielsaidi'
s.ios.deployment_target = '11.0'
s.source_files = 'KeyboardKit/**/*.swift'
end