-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathSwiftPhoenixClient.podspec
35 lines (31 loc) · 1.47 KB
/
SwiftPhoenixClient.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
29
30
31
32
33
34
35
#
# Be sure to run `pod lib lint SwiftPhoenixClient.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "SwiftPhoenixClient"
s.version = "5.3.5"
s.summary = "Connect your Phoenix and iOS applications through WebSockets!"
s.swift_version = "5.0"
s.description = <<-EOS
SwiftPhoenixClient is a Swift port of phoenix.js, abstracting away the details
of the Phoenix Channels library and providing a near identical experience
to connect to your Phoenix WebSockets on iOS.
RxSwift extensions exist as well when subscribing to channel events.
A default Transport layer is implmenented for iOS 13 or later. If targeting
an earlier iOS version, please see the StarscreamSwiftPhoenixClient extention.
EOS
s.homepage = "https://github.com/davidstump/SwiftPhoenixClient"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "David Stump" => "[email protected]" }
s.source = { :git => "https://github.com/davidstump/SwiftPhoenixClient.git", :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '4.0'
s.swift_version = '5.0'
s.source_files = "Sources/SwiftPhoenixClient/"
end