-
Notifications
You must be signed in to change notification settings - Fork 44
/
MessageInputBar.podspec
45 lines (34 loc) · 1.2 KB
/
MessageInputBar.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Pod::Spec.new do |s|
# 1 - Specs
s.platform = :ios
s.name = 'MessageInputBar'
s.summary = 'A powerful InputAccessoryView ideal for messaging applications.'
s.homepage = 'https://github.com/MessageKit/MessageInputBar'
s.requires_arc = true
# 2 - Version
s.version = '0.4.1'
s.pod_target_xcconfig = {
"SWIFT_VERSION" => "4.2",
}
s.swift_version = '4.2'
s.ios.deployment_target = '9.0'
s.source = { :git => 'https://github.com/MessageKit/MessageInputBar.git', :tag => s.version }
# 3 - License
s.license = { :type => "MIT", :file => "LICENSE.md" }
# 4 - Author
s.social_media_url = 'https://twitter.com/nathantannar4'
s.author = { "Nathan Tannar" => "[email protected]" }
# 5 - Source Files
s.default_subspecs = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'Sources/**/*.swift'
end
s.subspec 'AttachmentManager' do |b|
b.source_files = "Plugins/AttachmentManager/**/*.swift"
b.dependency 'MessageInputBar/Core'
end
s.subspec 'AutocompleteManager' do |c|
c.source_files = "Plugins/AutocompleteManager/**/*.swift"
c.dependency 'MessageInputBar/Core'
end
end