forked from GetStream/stream-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGetStream.podspec
More file actions
27 lines (25 loc) · 938 Bytes
/
Copy pathGetStream.podspec
File metadata and controls
27 lines (25 loc) · 938 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
25
26
27
Pod::Spec.new do |s|
s.name = "GetStream"
s.version = "1.1.0"
s.summary = "Swift Client - Build Activity Feeds & Streams with GetStream.io https://getstream.io"
s.homepage = "https://github.com/GetStream/stream-swift"
s.license = { :type => "BSD-3", :file => "LICENSE" }
s.author = { "Alexey Bukhtin" => "alexey@getstream.io" }
s.social_media_url = "https://getstream.io"
s.swift_version = "4.2"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/GetStream/stream-swift.git", :tag => s.version.to_s }
s.default_subspecs = "Core", "Faye"
s.subspec "Core" do |ss|
ss.source_files = "Sources/Core/**/*"
ss.framework = "Foundation"
ss.dependency "Moya", "~> 12.0"
ss.dependency "Result", "~> 4.1"
ss.dependency "Swime", "~> 3.0"
end
s.subspec "Faye" do |ss|
ss.source_files = "Sources/Faye/*"
ss.dependency "GetStream/Core"
ss.dependency "Faye"
end
end