forked from GetStream/stream-chat-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamChat.podspec
26 lines (22 loc) · 996 Bytes
/
StreamChat.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
Pod::Spec.new do |spec|
spec.name = "StreamChat"
spec.version = "1.5.4"
spec.summary = "Stream iOS Chat"
spec.description = "stream-chat-swift is the official Swift client and UI for Stream Chat, a service for building chat applications."
spec.homepage = "https://getstream.io/chat/"
spec.license = { :type => "BSD-3", :file => "LICENSE" }
spec.author = { "Alexey Bukhtin" => "[email protected]" }
spec.social_media_url = "https://getstream.io"
spec.swift_version = "5.0"
spec.platform = :ios, "11.0"
spec.source = { :git => "https://github.com/GetStream/stream-chat-swift.git", :tag => "#{spec.version}" }
spec.requires_arc = true
spec.source_files = "Sources/UI/**/*.swift"
spec.resources = "Sources/UI/Chat.xcassets"
spec.framework = "Foundation", "UIKit"
spec.dependency "StreamChatCore"
spec.dependency "Nuke", "~> 8.2.0"
spec.dependency "SnapKit", "~> 5.0.0"
spec.dependency "SwiftyGif", "~> 5.1.0"
spec.dependency "RxGesture", "~> 3.0.0"
end