forked from ably/ably-cocoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAblyRealtime.podspec
21 lines (21 loc) · 993 Bytes
/
AblyRealtime.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "AblyRealtime"
s.version = "0.8.4"
s.summary = "iOS client for Ably"
s.description = <<-DESC
iOS client library for ably.io, the realtime messaging service, written in Objective-C and ready for Swift 2.0.
DESC
s.homepage = "https://www.ably.io"
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { "Ably" => "support@ably.io" }
s.source = { :git => "https://github.com/ably/ably-ios.git", :tag => s.version.to_s }
s.requires_arc = true
s.social_media_url = 'https://twitter.com/ablyrealtime'
s.documentation_url = "https://www.ably.io/documentation"
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Source/*.{h,m}'
s.module_map = 'Source/AblyRealtime.modulemap'
s.dependency 'SocketRocket', '0.5.1'
s.dependency 'msgpack', '0.1.8'
end