-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathKeyboardKitSwiftUI.podspec
More file actions
24 lines (19 loc) · 981 Bytes
/
KeyboardKitSwiftUI.podspec
File metadata and controls
24 lines (19 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Run `pod lib lint KeyboardKitSwiftUI.podspec' to ensure this is a valid spec.
Pod::Spec.new do |s|
s.name = 'KeyboardKitSwiftUI'
s.version = '2.9.0'
s.swift_versions = ['5.2']
s.summary = 'KeyboardKitSwiftUI adds SwiftUI support to KeyboardKit.'
s.description = <<-DESC
KeyboardKitSwiftUI makes it possible to build custom keyboard extensions in SwiftUI.
DESC
s.homepage = 'https://github.com/danielsaidi/KeyboardKitSwiftUI'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Daniel Saidi' => 'daniel.saidi@gmail.com' }
s.source = { :git => 'https://github.com/danielsaidi/KeyboardKitSwiftUI.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/danielsaidi'
s.swift_version = '5.2'
s.ios.deployment_target = '13.0'
s.source_files = 'Sources/KeyboardKitSwiftUI/**/*.swift'
s.dependency 'KeyboardKit', '~> 2.9.0'
end