-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPubNubCSM.podspec
32 lines (24 loc) · 1.12 KB
/
PubNubCSM.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
Pod::Spec.new do |s|
s.name = 'PubNubCSM'
s.version = '0.1.2'
s.homepage = 'https://github.com/pubnub/pubnub-swift-csm'
s.documentation_url = 'https://www.pubnub.com/docs/chat'
s.authors = { 'PubNub, Inc.' => '[email protected]' }
s.social_media_url = 'https://twitter.com/pubnub'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/pubnub/pubnub-swift-csm.git', :tag => s.version }
s.summary = 'Swift-based PubNub Client State Management framework for iOS, macOS, tvOS, & watchOS'
s.description = <<-DESC
The PubNub CSM framework offers a data management framework that listens to realtime events generated by the PubNub network
to update the view inside your application. And of course, your data can coexist with PubNub-defined data.
DESC
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.swift_version = '5.0'
s.module_name = 'PubNubCSM'
s.source_files = 'Sources/**/*.swift'
s.dependency 'PubNub', '~> 2.5'
s.dependency 'ReSwift', '~> 5.0'
end