forked from zetapush/zetapush-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZetaPushNetwork.podspec
33 lines (29 loc) · 1.22 KB
/
ZetaPushNetwork.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
#
# Be sure to run `pod spec lint ZetaPushNetwork.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "ZetaPushNetwork"
spec.version = "3.1.6"
spec.summary = "Swift client for ZetaPush"
spec.description = <<-DESC
Swift client for ZetaPush
Allows dev to easily connect to ZetaPush Backend As A Service
DESC
spec.homepage = "http://zetapush.com"
spec.license = "Leocare"
spec.author = { "Anthony GUIGUEN" => "anthony@insurlytech.com" }
spec.platform = :ios, "10.0"
spec.source = { :git => "https://github.com/Insurlytech/zetapush-swift.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.{swift}"
spec.exclude_files = "Classes/Exclude"
spec.swift_version = '5.3'
spec.framework = "UIKit", "Foundation"
spec.requires_arc = true
spec.dependency "PromiseKit", "6.13.3"
spec.dependency "Gloss", "3.2.1"
spec.dependency "CometDClient", "1.1.3"
end