-
Notifications
You must be signed in to change notification settings - Fork 29
/
AlamofireURLCache5.podspec
25 lines (23 loc) · 1.16 KB
/
AlamofireURLCache5.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
#
# Be sure to run `pod lib lint AlamofireURLCache.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 = 'AlamofireURLCache5'
s.version = '0.5.0'
s.summary = 'Alamofire network library URLCache-based cache extension'
s.description = <<-DESC
AlamofireURLCache can cooperate with Alamofire to easily realize data request caching (based on URLCache) without modifying your code logic.
DESC
s.homepage = 'https://github.com/kenshincui/AlamofireURLCache.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'kenshincui' => '[email protected]' }
s.source = { :git => 'https://github.com/kenshincui/AlamofireURLCache.git', :tag => s.version.to_s }
s.swift_version = '5.2'
s.ios.deployment_target = '10.0'
s.source_files = 'AlamofireURLCache/*.{h,swift}','Debugger/**/*.{h,swift}'
s.dependency 'Alamofire','~> 5.2'
end