forked from matrix-org/matrix-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMatrixSDK.podspec
More file actions
30 lines (19 loc) · 1.06 KB
/
MatrixSDK.podspec
File metadata and controls
30 lines (19 loc) · 1.06 KB
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.3.1"
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" => "support@matrix.org" }
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.3.1" }
s.source_files = "MatrixSDK", "sdk/MatrixSDK/**/*.{h,m}"
s.requires_arc = true
s.dependency 'AFNetworking', '~> 2.4.1'
s.dependency 'Mantle', '~> 1.5'
end