forked from ably/ably-cocoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ably.podspec
28 lines (28 loc) · 1.32 KB
/
Ably.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
Pod::Spec.new do |s|
s.name = "Ably"
s.version = `Scripts/get-version.sh`
s.summary = "iOS, tvOS and macOS Objective-C and Swift client for Ably"
s.description = <<-DESC
iOS, tvOS and macOS Objective-C and Swift client library for ably.io, the realtime messaging service.
DESC
s.homepage = "https://www.ably.io"
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { "Ably" => "[email protected]" }
s.source = { :git => "https://github.com/ably/ably-cocoa.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ablyrealtime'
s.documentation_url = "https://www.ably.io/documentation"
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '10.0'
s.osx.deployment_target = '10.11'
s.requires_arc = true
s.swift_version = '5.0'
s.source_files = 'Source/**/*.{h,m,swift}'
s.private_header_files = 'Source/*+Private.h', 'Source/Private/*.h'
s.module_map = 'Source/Ably.modulemap'
s.dependency 'SocketRocketAblyFork', '0.5.2-ably-7'
s.dependency 'KSCrashAblyFork', '1.15.20-ably-6'
s.dependency 'msgpack', '0.3.1'
s.dependency 'ULID', '1.1.0'
s.dependency 'SAMKeychain', '1.5.3'
s.dependency 'AblyDeltaCodec', '1.2.0'
end