-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlamofireSessionRenewer.podspec
More file actions
29 lines (23 loc) · 1.07 KB
/
AlamofireSessionRenewer.podspec
File metadata and controls
29 lines (23 loc) · 1.07 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
#
# Be sure to run `pod lib lint AlamofireSessionRenewer.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'AlamofireSessionRenewer'
s.version = '3.0.0'
s.summary = 'Extension that adds auth information renewal functionality to Alamofire'
s.homepage = 'https://dashdevs.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'dashdevs llc' => 'hello@dashdevs.com' }
s.source = { :git => 'https://github.com/dashdevs/AlamofireSessionRenewer.git', :tag => s.version.to_s }
s.source_files = 'Sources/AlamofireSessionRenewer/**/*'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.swift_versions = ['5.0', '5.1', '5.5', '5.7', '5.8', '5.9', '5.10']
s.dependency 'Alamofire', '~> 5.4.3'
end