forked from KeyboardKit/KeyboardKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KeyboardKit.podspec
22 lines (18 loc) · 900 Bytes
/
KeyboardKit.podspec
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 = '3.2.0'
s.swift_versions = ['5.3']
s.summary = 'KeyboardKit helps you create iOS keyboard extensions.'
s.description = <<-DESC
KeyboardKit is a Swift library that can be used to create iOS keyboard extensions.
DESC
s.homepage = 'https://github.com/danielsaidi/KeyboardKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Daniel Saidi' => '[email protected]' }
s.source = { :git => 'https://github.com/danielsaidi/KeyboardKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/danielsaidi'
s.swift_version = '5.3'
s.ios.deployment_target = '11.0'
s.source_files = 'Sources/KeyboardKit/**/*.swift'
end