forked from GetStream/stream-chat-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStreamChatRealm.podspec
More file actions
22 lines (18 loc) · 826 Bytes
/
StreamChatRealm.podspec
File metadata and controls
22 lines (18 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "StreamChatRealm"
spec.version = "0.0.1"
spec.summary = "Stream iOS Chat Realm"
spec.description = "stream-chat-swift is the official Swift client 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" => "alexey@getstream.io" }
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/Databse/Realm/**/*.swift"
spec.framework = "Foundation"
spec.dependency "StreamChatCore"
spec.dependency "RealmSwift"
end