forked from danielrhodes/Swift-ActionCableClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ActionCableClient.podspec
23 lines (20 loc) · 1.1 KB
/
ActionCableClient.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "ActionCableClient"
s.version = "0.2.3"
s.summary = "A Swift client for the Rails ActionCable WebSocket server."
s.description = <<-DESC
ActionCable is a new WebSocket server being released with Rails 5 which makes it easy to add real-time features to your app. This Swift client makes it dead-simple to connect with that server, abstracting away everything except what you need to get going.
DESC
s.homepage = "https://github.com/danielrhodes/Swift-ActionCableClient"
s.license = 'MIT'
s.author = { "Daniel Rhodes" => "rhodes.daniel@gmail.com" }
s.source = { :git => "https://github.com/danielrhodes/Swift-ActionCableClient.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/danielrhodes'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'Source/Classes/**/*'
s.frameworks = 'Foundation'
s.dependency 'Starscream', '~> 2.0.0'
end