forked from matrix-org/matrix-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MatrixSDK.podspec
30 lines (19 loc) · 1.06 KB
/
MatrixSDK.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
Pod::Spec.new do |s|
s.name = "MatrixSDK"
s.version = "0.4.0"
s.summary = "The iOS SDK to build apps compatible with Matrix (http://www.matrix.org)"
s.description = <<-DESC
Matrix is a new open standard for interoperable Instant Messaging and VoIP, providing pragmatic HTTP APIs and open source reference implementations for creating and running your own real-time communication infrastructure.
Our hope is to make VoIP/IM as universal and interoperable as email.
DESC
s.homepage = "http://www.matrix.org"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "matrix.org" => "[email protected]" }
s.social_media_url = "http://twitter.com/matrixdotorg"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.4.0" }
s.source_files = "MatrixSDK", "MatrixSDK/**/*.{h,m}"
s.requires_arc = true
s.dependency 'AFNetworking', '~> 2.5.2'
s.dependency 'Mantle', '~> 1.5'
end