-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRSSwiftNetworking.podspec
32 lines (26 loc) · 1.17 KB
/
RSSwiftNetworking.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
Pod::Spec.new do |s|
s.name = 'RSSwiftNetworking'
s.version = '1.1.7'
s.summary = 'A flexible network layer API written in Swift.'
s.description = 'A flexible network layer API written in Swift. Compatible with iOS, iPadOS and tvOS.'
s.homepage = 'https://github.com/rootstrap/RSSwiftNetworking'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'rootstrap' => '[email protected]' }
s.source = { :git => 'https://github.com/rootstrap/RSSwiftNetworking.git',
:tag => s.version.to_s
}
s.social_media_url = 'https://www.rootstrap.com/'
s.ios.deployment_target = '15.0'
s.osx.deployment_target = '12.0'
s.tvos.deployment_target = '15.0'
s.swift_version = '5.5'
s.default_subspec = 'Core'
s.subspec 'Core' do |core_spec|
core_spec.source_files = 'Sources/RSSwiftNetworking/**/*'
end
s.subspec 'AlamofireProvider' do |alamofire_spec|
alamofire_spec.source_files = 'Sources/RSSwiftNetworkingAlamofire/*'
alamofire_spec.dependency 'RSSwiftNetworking/Core'
alamofire_spec.dependency 'Alamofire', '5.2.0'
end
end