-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathParaClient.podspec
27 lines (23 loc) · 1.14 KB
/
ParaClient.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
Pod::Spec.new do |s|
s.name = "ParaClient"
s.version = "1.33.0"
s.summary = "Para Client for iOS"
s.description = "Para is a simple, modular backend framework for object persistence and retrieval. It helps you build applications faster by taking care of the backend. This is the Swift client for Para."
s.homepage = "https://github.com/erudika/para-client-ios"
s.documentation_url = "https://paraio.org/docs/index.html"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "Alex Bogdanovski" => "[email protected]" }
s.social_media_url = "https://twitter.com/para_io"
s.cocoapods_version = ">= 1.0"
s.ios.deployment_target = "9.3"
s.osx.deployment_target = "10.11"
s.watchos.deployment_target = "2.2"
s.tvos.deployment_target = "9.2"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
s.source = { :git => "https://github.com/erudika/para-client-ios.git", :tag => "#{s.version}" }
s.source_files = "Source/*.{h,swift}", "Sources/*.{h,swift}"
s.requires_arc = true
s.dependency "CryptoSwift"
s.dependency "SwiftyJSON"
s.dependency "Alamofire"
end