forked from Yalantis/APIClient
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAPIClient.podspec
More file actions
25 lines (23 loc) · 813 Bytes
/
APIClient.podspec
File metadata and controls
25 lines (23 loc) · 813 Bytes
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
Pod::Spec.new do |s|
s.name = 'APIClient'
s.version = '3.2.1'
s.summary = 'Extensible network client.'
s.homepage = 'https://github.com/rnkyr/APIClient.git'
s.license = { type: 'MIT', file: 'License' }
s.authors = {
'Roman Kyrylenko': 'roma.kyrylenko@gmail.com',
'Anton Vodolazkyi': 'anton.vodolazky@yalantis.com'
}
s.source = { git: 'https://github.com/rnkyr/APIClient.git', tag: s.version }
s.frameworks = 'Foundation'
s.ios.deployment_target = '13.0'
s.default_subspec = 'Alamofire'
s.subspec 'Core' do |ss|
ss.source_files = 'Sources/APIClient/**/*.swift'
end
s.subspec 'Alamofire' do |ss|
ss.dependency 'APIClient/Core'
ss.dependency 'Alamofire', '5.2.1'
ss.source_files = 'Sources/APIClientAlamofire/*'
end
end