forked from siegesmund/SwiftDDP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftDDP.podspec
23 lines (18 loc) · 1.02 KB
/
SwiftDDP.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 = "SwiftDDP"
s.version = "0.4.2"
s.summary = "A DDP Client for communicating with Meteor servers, written in Swift. Supports OAuth login with Facebook, Google, Twitter & Github."
s.description = <<-DESC "A DDP Client for communicating with DDP Servers (Meteor JS), written in Swift. Supports OAuth authentication with Facebook, Google, Twitter & Github."
DESC
s.homepage = "https://github.com/siegesmund/SwiftDDP"
s.license = 'MIT'
s.author = { "Peter Siegesmund" => "[email protected]" }
s.source = { :git => "https://github.com/siegesmund/SwiftDDP.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/psiegesmund'
s.requires_arc = true
s.platform = :ios, '8.1'
s.source_files = 'Sources/*.swift'
s.dependency 'CryptoSwift'
s.dependency 'SwiftWebSocket',:git => 'https://github.com/tidwall/SwiftWebSocket.git', :branch => 'master'
s.dependency 'XCGLogger'
end