-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathArtikCloudSwift.podspec
52 lines (29 loc) · 2.4 KB
/
ArtikCloudSwift.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "ArtikCloudSwift"
s.version = "4.3.0"
s.summary = "ARTIK Cloud SDK for iOS, tvOS, watchOS & macOS, fully written in Swift."
s.homepage = "https://github.com/artikcloud/artikcloud-swift"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => 'Apache License, Version 2.0' }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "ARTIK Cloud" => "[email protected]" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/artikcloud/artikcloud-swift.git", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Source/*.swift"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.dependency 'Alamofire', '~> 4.7.3'
s.dependency 'PromiseKit', '~> 6.5.1'
s.dependency 'ObjectMapper', '~> 3.3.0'
s.dependency 'CryptoSwift', '~> 0.12.0'
s.dependency 'Starscream', '~> 3.0.6'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' }
s.cocoapods_version = '>= 1.5.3'
end