This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 139
/
SlackKit.podspec
53 lines (47 loc) · 1.75 KB
/
SlackKit.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
46
47
48
49
50
51
52
53
Pod::Spec.new do |s|
s.name = "SlackKit"
s.version = "4.7.0"
s.summary = "Write Slack apps in Swift"
s.homepage = "https://github.com/pvzig/SlackKit"
s.license = "MIT"
s.author = { "Peter Zignego" => "[email protected]" }
s.source = { :git => "https://github.com/pvzig/SlackKit.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/pvzig"
s.platforms = { :ios => '10.0', :osx => '10.11', :tvos => '10.0' }
s.swift_version = '5.5.2'
s.cocoapods_version = '>= 1.4.0'
s.default_subspec = "SlackKit"
s.subspec "SlackKit" do |ss|
ss.source_files = "SlackKit/Sources/"
ss.dependency "SlackKit/SKCore"
ss.dependency "SlackKit/SKClient"
ss.dependency "SlackKit/SKWebAPI"
ss.dependency "SlackKit/SKRTMAPI"
ss.dependency "SlackKit/SKServer"
end
s.subspec "SKClient" do |ss|
ss.source_files = "SKClient/Sources/"
ss.dependency "SlackKit/SKCore"
end
s.subspec "SKCore" do |ss|
ss.source_files = "SKCore/Sources/"
ss.framework = "Foundation"
end
s.subspec "SKRTMAPI" do |ss|
ss.source_files = "SKRTMAPI/Sources/**/*.swift"
ss.exclude_files = "SKRTMAPI/Sources/Conformers/VaporEngineRTM.swift"
ss.dependency "SlackKit/SKCore"
ss.dependency "SlackKit/SKWebAPI"
ss.dependency "Starscream", "4.0.4"
end
s.subspec "SKServer" do |ss|
ss.source_files = "SKServer/Sources/**/*.swift"
ss.dependency "SlackKit/SKCore"
ss.dependency "SlackKit/SKWebAPI"
ss.dependency "Swifter", "1.5.0"
end
s.subspec "SKWebAPI" do |ss|
ss.source_files = "SKWebAPI/Sources/"
ss.dependency "SlackKit/SKCore"
end
end