This repository was archived by the owner on Jun 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKSOChatKit.podspec
More file actions
32 lines (25 loc) · 1.47 KB
/
KSOChatKit.podspec
File metadata and controls
32 lines (25 loc) · 1.47 KB
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
28
29
30
31
32
Pod::Spec.new do |s|
s.name = 'KSOChatKit'
s.version = '0.15.4'
s.summary = 'KSOChatKit is an iOS framework that provides various controls for building a Messages like UI.'
s.description = <<-DESC
KSOChatKit is an iOS framework that provides various controls for building a Messages like UI. It provides an automatically expanding text view, automatic scroll view management and various completion behavior.
DESC
s.homepage = 'https://github.com/Kosoku/KSOChatKit'
s.screenshots = ['https://github.com/Kosoku/KSOChatKit/raw/master/screenshots/iOS-1.png','https://github.com/Kosoku/KSOChatKit/raw/master/screenshots/iOS-2.png','https://github.com/Kosoku/KSOChatKit/raw/master/screenshots/iOS-3.png','https://github.com/Kosoku/KSOChatKit/raw/master/screenshots/iOS-4.png']
s.license = { :type => 'Apache 2.0', :file => 'license.txt' }
s.author = { 'William Towe' => 'willbur1984@gmail.com' }
s.source = { :git => 'https://github.com/Kosoku/KSOChatKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.requires_arc = true
s.source_files = 'KSOChatKit/**/*.{h,m}'
s.exclude_files = 'KSOChatKit/KSOChatKit-Info.h'
s.private_header_files = 'KSOChatKit/Private/*.h'
s.resource_bundles = {
'KSOChatKit' => ['KSOChatKit/**/*.{lproj}']
}
s.ios.frameworks = 'UIKit'
s.dependency 'Ditko'
s.dependency 'Agamotto'
s.dependency 'Quicksilver'
end