forked from pusher/pusher-websocket-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPusherSwift.podspec
More file actions
22 lines (19 loc) · 822 Bytes
/
PusherSwift.podspec
File metadata and controls
22 lines (19 loc) · 822 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 |s|
s.name = 'PusherSwift'
s.version = '6.1.0'
s.summary = 'A Pusher client library in Swift'
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
s.license = 'MIT'
s.author = { "Hamilton Chapman" => "hamchapman@gmail.com" }
s.source = { git: "https://github.com/pusher/pusher-websocket-swift.git", tag: s.version.to_s }
s.social_media_url = 'https://twitter.com/pusher'
s.requires_arc = true
s.source_files = 'Sources/*.swift'
s.dependency 'CryptoSwift', '~> 0.9.0'
s.dependency 'ReachabilitySwift', '~> 4.1.0'
s.dependency 'TaskQueue', '~> 1.1.1'
s.dependency 'Starscream', '~> 3.0.5'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
end