This repository was archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSTRVChatCore.podspec
More file actions
41 lines (27 loc) · 2.07 KB
/
STRVChatCore.podspec
File metadata and controls
41 lines (27 loc) · 2.07 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
33
34
35
36
37
38
39
40
41
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.name = 'STRVChatCore'
spec.module_name = 'ChatCore'
spec.version = '0.0.13'
spec.summary = 'Core framework of Universal Modular Chat Component from STRV'
spec.description = <<-DESC
Universal Modular Chat Component from STRV.
Core is an universal business logic that you can use with any UI and networking
that convorms to respective protocols.
DESC
spec.homepage = 'https://github.com/strvcom/ios-chat-component'
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = { :type => 'MIT', :file => 'LICENSE' }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.authors = { 'Jan Schwarz' => 'jan.schwarz@strv.com', 'Tomáš Čejka' => 'tomas.cejka@strv.com', 'Daniel Pecher' => 'daniel.pecher@strv.com', 'Mireya Orta' => 'mireya.orta@strv.com' }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios, '12.0'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source = {
:git => 'https://github.com/strvcom/ios-chat-component.git',
:tag => 'Core-' + spec.version.to_s
}
spec.cocoapods_version = '>= 1.4.0'
spec.swift_version = '5.3'
spec.source_files = 'ChatCore/*.swift', 'ChatCore/**/*.swift'
end