-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAferoSwiftSDK.podspec
More file actions
41 lines (34 loc) · 1.45 KB
/
Copy pathAferoSwiftSDK.podspec
File metadata and controls
41 lines (34 loc) · 1.45 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
31
32
33
34
35
36
37
38
39
40
41
Pod::Spec.new do |s|
s.name = "AferoSwiftSDK"
s.module_name = "Afero"
s.version = "1.6.0"
s.summary = "Library for interacting with Afero devices"
s.description = <<-DESC
Library for interacting with Afero devices.
DESC
s.homepage = "http://developer.afero.io"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Cora Middleton" => "cora@afero.io" }
s.social_media_url = "http://twitter.com/aferodev"
s.ios.deployment_target = "11.0"
#s.osx.deployment_target = "10.11"
s.source = { :git => "git@github.com:aferodeveloper/AferoSwiftSDK.git", :tag => "#{s.version}" }
s.default_subspecs = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = "AferoSwiftSDK/Core/**/*"
ss.dependency 'AferoSofthub', '~> 1.8.4'
ss.dependency 'CocoaLumberjack/Swift', '~> 3.8.0'
ss.dependency 'CryptoSwift', '1.5.1'
ss.dependency 'CocoaZ', '~> 1.4'
ss.dependency 'ReactiveSwift', '~> 7.0'
ss.dependency 'PromiseKit/CorePromise', '~> 4.5'
ss.dependency 'HTTPStatusCodes', '~> 3.2'
ss.dependency 'RSEnvironment', '0.0.3'
end
s.subspec 'AFNetworking' do |ss|
ss.dependency 'AferoSwiftSDK/Core'
ss.dependency 'AFNetworking/NSURLSession', '~> 3.1'
ss.dependency 'AFOAuth2Manager', '~> 3.0'
ss.source_files = 'AferoSwiftSDK/AFNetworking/**/*'
end
end