forked from centrifugal/centrifuge-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCentrifugeiOS.podspec
22 lines (18 loc) · 996 Bytes
/
CentrifugeiOS.podspec
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 = "CentrifugeiOS"
s.version = "5.0.1"
s.summary = "Swifty iOS client for Centrifuge."
s.description = <<-DESC
iOS client for Centrifuge https://github.com/centrifugal/Centrifuge. It uses SwiftWebSocket and helpers classes to communicate with Centrifuge server.
DESC
s.homepage = "https://github.com/centrifugal/centrifuge-ios"
s.license = 'MIT'
s.author = { "German Saprykin" => "[email protected]" }
s.source = { :git => "https://github.com/centrifugal/centrifuge-ios.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/saprykinh'
s.ios.deployment_target = '9.3'
s.source_files = 'CentrifugeiOS/Classes/**/*.{h,m,swift}'
s.module_map = 'CentrifugeiOS/Classes/CentrifugeiOS.modulemap'
s.private_header_files = 'CentrifugeiOS/Classes/CommonCryptoBridge/CommonCryptoBridge.h'
s.dependency 'Starscream', '~>3.0.4'
end